Skip to content

Commit

Permalink
testing: attempt to fix break times with pytest 7.4.0 (#120)
Browse files Browse the repository at this point in the history
commit-id:40423fb9
  • Loading branch information
dhalperi authored Jul 15, 2023
1 parent 48b172b commit 30ea0a4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/reusable-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ jobs:
TEMP_DIR=$(mktemp -d)
tar xzf pybatfish-tests.tgz -C ${TEMP_DIR}
tar xzf pybatfish-notebooks.tgz -C ${TEMP_DIR}
pushd ${TEMP_DIR}
pytest -k "not test_notebook_output" "${TEMP_DIR}/tests/integration"
popd
pybf_cross_version_tests:
runs-on: ubuntu-latest
if: inputs.run_cross_version_tests
Expand Down Expand Up @@ -147,7 +149,9 @@ jobs:
TEMP_DIR=$(mktemp -d)
tar xzf pybatfish-tests.tgz -C ${TEMP_DIR}
tar xzf pybatfish-notebooks.tgz -C ${TEMP_DIR}
pushd ${TEMP_DIR}
pytest -k "not test_notebook_output" "${TEMP_DIR}/tests/integration"
popd
- name: Stop bf
run: docker stop $(docker ps -q)
bf_image_test:
Expand Down Expand Up @@ -190,7 +194,9 @@ jobs:
TEMP_DIR=$(mktemp -d)
tar xzf pybatfish-tests.tgz -C ${TEMP_DIR}
tar xzf pybatfish-notebooks.tgz -C ${TEMP_DIR}
pushd ${TEMP_DIR}
pytest "${TEMP_DIR}/tests/integration"
popd
- name: Stop bf
run: docker stop $(docker ps -q)
allinone_image_test:
Expand Down

0 comments on commit 30ea0a4

Please sign in to comment.