-
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.
- Loading branch information
1 parent
befcc47
commit b5fddb9
Showing
3 changed files
with
9 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
from warnings import warn | ||
from process_bigraph import process_registry | ||
from biosimulator_processes.cobra_process import CobraProcess | ||
from biosimulator_processes.copasi_process import CopasiProcess | ||
#from biosimulator_processes.tellurium_process import TelluriumProcess #, TelluriumStep | ||
from biosimulator_processes.tellurium_process import TelluriumProcess # , TelluriumStep | ||
from biosimulator_processes.smoldyn_process import SmoldynProcess | ||
|
||
|
||
# register processes | ||
process_registry.register('cobra', CobraProcess) | ||
process_registry.register('copasi', CopasiProcess) | ||
#process_registry.register('tellurium_process', TelluriumProcess) | ||
# process_registry.register('tellurium_step', TelluriumStep) | ||
process_registry.register('smoldyn_process', SmoldynProcess) | ||
process_registry.register('tellurium_process', TelluriumProcess) | ||
|
||
# TODO: Eventually integrate this Step implementation | ||
# process_registry.register('tellurium_step', TelluriumStep) | ||
|
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
[pytest] | ||
addopts = --ignore=setup.py | ||
addopts = --ignore=setup.py -ra | ||
# addopts = -ra --ignore=setup.py | ||
python_files = *.py | ||
python_functions = test_* | ||
#addopts = --doctest-modules --strict-markers | ||
testpaths = core_processes/tests | ||
testpaths = biosimulator_processes/tests | ||
markers = | ||
slow: indicates slow tests (deselect with '-m "not slow"') |