Skip to content

Commit

Permalink
Debug intel runs
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Oct 4, 2024
1 parent 8fef8f4 commit 00f3ed6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
python-version: [ '3.12' ]

uses: ./.github/workflows/build-wheels.yml
with:
Expand All @@ -34,7 +34,7 @@ jobs:
fail-fast: false
matrix:
test-type: [ 'performance-tests', 'unit-tests', 'gui-tests', 'cli-tests' ]
python-version: [ '3.8', '3.11', '3.12' ]
python-version: [ '3.12' ]
os: [ ubuntu-latest ]
uses: ./.github/workflows/test_ert.yml
with:
Expand All @@ -48,7 +48,7 @@ jobs:
fail-fast: false
matrix:
test-type: [ 'test', 'ui-test', 'integration-test', 'everest-models-test', 'doc', 'everest-docs-entry-test' ]
python-version: [ '3.8', '3.11', '3.12' ]
python-version: [ '3.12' ]
os: [ ubuntu-latest ]
uses: ./.github/workflows/test_everest.yml
with:
Expand All @@ -62,7 +62,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.11', '3.12' ]
python-version: [ '3.12' ]
uses: ./.github/workflows/test_ert_with_slurm.yml
with:
os: ${{ matrix.os }}
Expand All @@ -75,8 +75,8 @@ jobs:
fail-fast: false
matrix:
test-type: [ 'performance-tests', 'unit-tests', 'gui-tests', 'cli-tests' ]
python-version: [ '3.12' ]
os: [ 'macos-latest' ]
python-version: [ "3.8", "3.11", "3.12" ]
os: [ 'macos-13' ]
uses: ./.github/workflows/test_ert.yml
with:
os: ${{ matrix.os }}
Expand All @@ -85,7 +85,7 @@ jobs:
secrets: inherit

test-mac-everest:
if: github.ref_type != 'tag' # when not tag
if: github.ref_type == 'tag' # when not tag
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_ert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: CLI Test
if: inputs.test-type == 'cli-tests'
run: |
pytest --cov=ert --cov-report=xml:cov1.xml --junit-xml=junit.xml -o junit_family=legacy -n logical -v --benchmark-disable --dist loadgroup tests/ert/ui_tests/cli
pytest --cov=ert --cov-report=xml:cov1.xml --junit-xml=junit.xml -o junit_family=legacy -n logical -sv --benchmark-disable --dist loadgroup tests/ert/ui_tests/cli
- name: Unit Test
if: inputs.test-type == 'unit-tests'
Expand Down

0 comments on commit 00f3ed6

Please sign in to comment.