Skip to content

Commit

Permalink
Trying adding back tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlarson1 committed Feb 19, 2025
1 parent b1c529d commit 652f4b3
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,11 @@ jobs:
pip install --upgrade git+https://github.com/bandframework/surmise.git
- name: Install generator dependencies for Ubuntu tests
if: matrix.os == 'ubuntu-latest'
if: matrix.python-version <= '3.12'
run: |
sudo apt-get install bc
pip install -r install/ubuntu_no312.txt
pip install Tasmanian --user
if: matrix.os == 'ubuntu-latest' && matrix.python-version <= "3.12"
run: |
sudo apt-get install bc
pip install -r install/ubuntu_no312.txt
pip install Tasmanian --user
- name: Install Balsam on Pydantic 1
if: matrix.pydantic-version == '1.10.17'
Expand All @@ -134,7 +133,7 @@ jobs:
flake8 libensemble
- name: Remove test for persistent Surmise, octave on Python 3.12
if: matrix.python-version >= '3.13'
if: matrix.python-version >= "3.13"
run: |
rm ./libensemble/tests/regression_tests/test_persistent_fd_param_finder.py # needs octave, which doesn't yet support 3.13
rm ./libensemble/tests/regression_tests/test_persistent_aposmm_external_localopt.py # needs octave, which doesn't yet support 3.13
Expand Down

0 comments on commit 652f4b3

Please sign in to comment.