-
-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INTEGRALSWRQ-158: download methods replaced by get only
- Loading branch information
1 parent
ed9348f
commit 0bc450b
Showing
13 changed files
with
458 additions
and
771 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
import os | ||
|
||
|
||
# setup paths to the test data | ||
# can specify a single file or a list of files | ||
def get_package_data(): | ||
paths = [os.path.join('data', '*.vot'), | ||
os.path.join('data', '*.xml'), | ||
os.path.join('data', '*.zip'), | ||
os.path.join('data', '*.gz'), | ||
os.path.join('data', '*.tar'), | ||
os.path.join('data', '*.fits'), | ||
os.path.join('data', '*.txt'), | ||
] # etc, add other extensions | ||
# you can also enlist files individually by names | ||
# finally construct and return a dict for the sub module | ||
return {'astroquery.esa.integral.tests': paths} |
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
""" | ||
================ | ||
UTILS Tests Init | ||
================ | ||
European Space Astronomy Centre (ESAC) | ||
European Space Agency (ESA) | ||
""" |
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,18 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
import os | ||
|
||
|
||
# setup paths to the test data | ||
# can specify a single file or a list of files | ||
def get_package_data(): | ||
paths = [os.path.join('data', '*.vot'), | ||
os.path.join('data', '*.xml'), | ||
os.path.join('data', '*.zip'), | ||
os.path.join('data', '*.gz'), | ||
os.path.join('data', '*.tar'), | ||
os.path.join('data', '*.fits'), | ||
os.path.join('data', '*.txt'), | ||
] # etc, add other extensions | ||
# you can also enlist files individually by names | ||
# finally construct and return a dict for the sub module | ||
return {'astroquery.esa.utils.tests': paths} |
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 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
""" | ||
=============== | ||
ESA UTILS tests | ||
=============== | ||
European Space Astronomy Centre (ESAC) | ||
European Space Agency (ESA) | ||
""" |
Oops, something went wrong.