Skip to content

Commit

Permalink
Add checks for 3.9.* python version
Browse files Browse the repository at this point in the history
  • Loading branch information
jorblancoa committed Sep 19, 2024
1 parent a122ce8 commit 1e03b4b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/simulation_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,39 +242,39 @@ jobs:
- name: test-unit
run: |
. ./venv/bin/activate
if [ ${{ matrix.python-version }} == 3.9 ]; then
if [[ ${{ matrix.python-version }} == 3.9.* ]]; then
export RDMAV_FORK_SAFE=1
fi;
pytest tests/unit
- name: test-integration
run: |
. ./venv/bin/activate
if [ ${{ matrix.python-version }} == 3.9 ]; then
if [[ ${{ matrix.python-version }} == 3.9.* ]]; then
export RDMAV_FORK_SAFE=1
fi;
pytest -x --forked tests/integration
# - name: test-integration-e2e
# run: |
# . ./venv/bin/activate
# if [ ${{ matrix.python-version }} == 3.9 ]; then
# if [[ ${{ matrix.python-version }} == 3.9.* ]]; then
# export RDMAV_FORK_SAFE=1
# fi;
# pytest -s -x --forked --durations=5 --durations-min=15 tests/integration-e2e

- name: test-scientific
run: |
. ./venv/bin/activate
if [ ${{ matrix.python-version }} == 3.9 ]; then
if [[ ${{ matrix.python-version }} == 3.9.* ]]; then
export RDMAV_FORK_SAFE=1
fi;
pytest -s -x --forked --durations=5 --durations-min=15 tests/scientific
- name: test-scientific-ngv
run: |
. ./venv/bin/activate
if [ ${{ matrix.python-version }} == 3.9 ]; then
if [[ ${{ matrix.python-version }} == 3.9.* ]]; then
export RDMAV_FORK_SAFE=1
fi;
pytest -s -x --forked --durations=5 --durations-min=15 tests/scientific-ngv
Expand Down

0 comments on commit 1e03b4b

Please sign in to comment.