-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move remaining constants representing paths to NSIDC-hosted data
...into the regression tests dir where they belong.
- Loading branch information
1 parent
684dccb
commit 76432f4
Showing
4 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,3 @@ | ||
from pathlib import Path | ||
|
||
from pm_icecon.config.models import FlagValues | ||
|
||
DEFAULT_FLAG_VALUES = FlagValues() | ||
|
||
# NSIDC infrastructure-specific paths: | ||
NSIDC_NFS_SHARE_DIR = Path("/share/apps/amsr2-cdr") | ||
# Contains regression data, ancillary data files (masks), etc. | ||
# TODO: move ancillary files out of `cdr_testdata` dir? On the VMs, the | ||
# ancillary nasateam files in cdr_testdata are also in the `NSIDC_NFS_SHARE_DIR` | ||
CDR_TESTDATA_DIR = NSIDC_NFS_SHARE_DIR / "cdr_testdata" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from pathlib import Path | ||
|
||
|
||
# NSIDC infrastructure-specific paths: | ||
NSIDC_NFS_SHARE_DIR = Path("/share/apps/amsr2-cdr") | ||
|
||
# Contains regression data, ancillary data files (masks), etc. | ||
# TODO: move ancillary files out of `cdr_testdata` dir? On the VMs, the | ||
# ancillary nasateam files in cdr_testdata are also in the `NSIDC_NFS_SHARE_DIR` | ||
CDR_TESTDATA_DIR = NSIDC_NFS_SHARE_DIR / "cdr_testdata" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters