Created
October 13, 2016 18:52
-
-
Save hainm/4f6af16d5ef9b668e634ed952b7517cb to your computer and use it in GitHub Desktop.
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
import os | |
import subprocess | |
import amber_adaptbx | |
test_path = os.path.dirname(amber_adaptbx.__file__) + '/tests' | |
# test.fast | |
command = [ | |
'phenix.python', | |
'-m', | |
'pytest', | |
test_path, | |
'-m', | |
'"not slow and not medium"', | |
'-v', | |
] | |
code = subprocess.check_call(command) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment