diff --git a/biosimulators_test_suite/test_case/published_project.py b/biosimulators_test_suite/test_case/published_project.py index 5a13bb1..8e92038 100644 --- a/biosimulators_test_suite/test_case/published_project.py +++ b/biosimulators_test_suite/test_case/published_project.py @@ -275,7 +275,7 @@ def compatible_with_specifications(self, specifications): for task_reqs in self.task_requirements: reqs_satisfied = False for alg_specs in specifications['algorithms']: - # TEMPORARY RBA REMOVAL + ### TEMPORARY RBA REMOVAL if alg_specs['kisaoId']["id"] == "KISAO_0000669": raise RuntimeError("Error with Algorithm Specification (KISAO_0000669):\n\tDue to incompatible, " "outdated releases of RBApy, BioSimulators can no longer " diff --git a/tests/test_examples.py b/tests/test_examples.py index 677a9ad..9686ae0 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -37,8 +37,19 @@ def setUp(self): def tearDown(self): shutil.rmtree(self.dirname) + # @parameterized.parameterized.expand(EXAMPLES) + # def test_example_should_fail(self, name, example_filename): + # ### TEMPORARY RBA REMOVAL, REMOVE THIS TEST WHEN FIXED + # if "rba" not in example_filename: + # return + # with pytest.raises(RuntimeError): + # self.run_test_example(name, example_filename) + @parameterized.parameterized.expand(EXAMPLES) def test_example_should_pass(self, name, example_filename): + ### TEMPORARY RBA REMOVAL + if "rba" in example_filename: + return self.run_test_example(name, example_filename) def run_test_example(self, name, example_filename):