-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a simple test for the new script. Currently only checking that it…
… runs.
- Loading branch information
1 parent
e742902
commit eea4f03
Showing
5 changed files
with
16 additions
and
3 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
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,13 @@ | ||
import shlex | ||
from cosima_cookbook import database_update | ||
|
||
|
||
def test_database_update(tmpdir): | ||
|
||
args = shlex.split( | ||
"-db {db} test/data/update/experiment_a test/data/update/experiment_b".format( | ||
db=tmpdir.join("test.db") | ||
) | ||
) | ||
|
||
database_update.main(args) |