Skip to content

Commit a8695e5

Browse files
committed
update reqs in tests
1 parent 05a578c commit a8695e5

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/run-pytest-tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,10 @@ jobs:
1717
uses: actions/setup-python@v4
1818
with:
1919
python-version: ${{ matrix.python-version }}
20-
- name: Install dependencies
21-
run: |
22-
python -m pip install --upgrade pip
23-
python -m pip install -r requirements_dev.txt
2420
- name: Setup yt_xarray
2521
run: |
26-
python -m pip install -e .
22+
python -m pip install --upgrade pip
23+
python -m pip install -e .[full,test]
2724
- name: Run Tests
2825
run: pytest --cov=./ --cov-report=xml:coverage/coverage.xml
2926

.github/workflows/weekly-test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ jobs:
2020
uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python-version }}
23-
- name: Install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
python -m pip install -r requirements_dev.txt
2723
- name: Setup yt_xarray
28-
run: python -m pip install -e .
24+
run: |
25+
python -m pip install --upgrade pip
26+
python -m pip install -e .[full,test]
2927
- name: Run Tests
3028
run: pytest -v .

0 commit comments

Comments
 (0)