Skip to content

Commit

Permalink
remove caches and and old nwm client (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarq6c authored Dec 23, 2024
1 parent e403c05 commit 5501ffa
Showing 1 changed file with 1 addition and 51 deletions.
52 changes: 1 addition & 51 deletions .github/workflows/run_slow_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,30 +58,6 @@ jobs:
- name: Run all unittests
run: |
python3 -m pytest -s python/nwis_client/
caches:
name: Caches
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install -U pip
python3 -m pip install ./python/caches[develop]
- name: Echo dependency versions
run: |
python3 -m pip freeze
- name: Run all unittests
run: |
python3 -m pytest -s python/caches/
metrics:
name: Metrics
runs-on: ubuntu-latest
Expand All @@ -108,7 +84,6 @@ jobs:
python3 -m pytest -s python/metrics/
nwm_client:
name: NWM Client
needs: caches
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -124,38 +99,13 @@ jobs:
- name: Install dependencies
run: |
python3 -m pip install -U pip
python3 -m pip install ./python/caches
python3 -m pip install ./python/nwm_client[gcp,develop]
python3 -m pip install ./python/nwm_client[develop]
- name: Echo dependency versions
run: |
python3 -m pip freeze
- name: Run all unittests
run: |
python3 -m pytest -s python/nwm_client/
nwm_client_new:
name: NWM Client New
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install -U pip
python3 -m pip install ./python/nwm_client_new[develop]
- name: Echo dependency versions
run: |
python3 -m pip freeze
- name: Run all unittests
run: |
python3 -m pytest -s python/nwm_client_new/
events:
name: Events
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5501ffa

Please sign in to comment.