Skip to content

Commit

Permalink
Update test suite branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Mar 28, 2023
1 parent d353244 commit bbf24f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/petab_testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
PETAB_TEST_URL: https://github.com/PEtab-dev/petab_test_suite.git
run: |
cd $PARPE_BASE/ \
&& git clone --depth 1 --branch develop $PETAB_TEST_URL \
&& git clone --depth 1 --branch main $PETAB_TEST_URL \
&& $PARPE_BASE/misc/run_in_venv.sh $PARPE_BASE/build/venv \
pip3 install -e petab_test_suite
Expand Down
2 changes: 1 addition & 1 deletion tests/petab-test-suite/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ def pytest_generate_tests(metafunc):
test_numbers = parse_selection(cases)
else:
# Run all tests
test_numbers = petabtests.get_cases('sbml')
test_numbers = petabtests.get_cases('sbml', version="v1.0.0")

metafunc.parametrize("case", test_numbers)
2 changes: 1 addition & 1 deletion tests/petab-test-suite/test_petab_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def run() -> None:

n_success = 0
n_skipped = 0
all_cases = list(petabtests.get_cases('sbml'))
all_cases = list(petabtests.get_cases('sbml', version="v1.0.0"))
for case in all_cases:
try:
test_case(case)
Expand Down

0 comments on commit bbf24f8

Please sign in to comment.