Skip to content

Instantly share code, notes, and snippets.

@hainm
Created October 13, 2016 18:52
Show Gist options
  • Save hainm/4f6af16d5ef9b668e634ed952b7517cb to your computer and use it in GitHub Desktop.
Save hainm/4f6af16d5ef9b668e634ed952b7517cb to your computer and use it in GitHub Desktop.
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