-
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.
tests: setup start of westpa init test
- Loading branch information
1 parent
6ba9891
commit 4b49e8b
Showing
2 changed files
with
36 additions
and
5 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
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,15 @@ | ||
import os | ||
|
||
from subpex.configs import WestpaConfig | ||
from subpex.setup.westpa.main import run_westpa_setup | ||
|
||
|
||
def test_westpa_init_m7g(path_m7g_paths, m7g_config, tmp_dir): | ||
westpa_config = WestpaConfig() | ||
write_dir = os.path.join(tmp_dir, "westpa_init_m7g") | ||
run_westpa_setup( | ||
subpex_config=m7g_config, | ||
westpa_config=westpa_config, | ||
write_dir=write_dir, | ||
overwrite=True, | ||
) |