Skip to content

Commit

Permalink
python
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzaponte committed Dec 18, 2024
1 parent 5079822 commit d94d1a8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ on:

jobs:
build:

strategy:
fail-fast: false
matrix:
python-version: [3.13]
#platform: [ubuntu-18.04, macos-latest]
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}
Expand All @@ -31,20 +29,20 @@ jobs:
- name: Install IC
run: |
source $CONDA/etc/profile.d/conda.sh
source manage.sh activate_no_tests ${{ matrix.python-version }}
source manage.sh activate_no_tests
- name: Run tests
run: |
set -o pipefail # necessary for test failure to propagate to `tee`
source $CONDA/etc/profile.d/conda.sh
source manage.sh activate_no_tests ${{ matrix.python-version }}
source manage.sh activate_no_tests
PYTEST_ADDOPTS=--color=yes HYPOTHESIS_PROFILE=travis-ci bash manage.sh run_tests_par | tee pytest_output
- name: Test warning-catching script
run: |
source $CONDA/etc/profile.d/conda.sh
source manage.sh activate_no_tests ${{ matrix.python-version }}
source manage.sh activate_no_tests
# write dummy tests
cat > dummy.py <<EOF
Expand Down

0 comments on commit d94d1a8

Please sign in to comment.