Skip to content

Commit

Permalink
attempt editable install
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Jun 7, 2022
1 parent 5853931 commit e960894
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
with:
path: ${{ env.pythonLocation }}
key: test-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml', '**/setup.*') }}
- run: pip install ".[test]" pytest-xdist
- run: pip install -e ".[test]" pytest-xdist
- run: pip freeze
- run: pytest -n auto
test_sdpdeps:
Expand All @@ -103,7 +103,7 @@ jobs:
with:
path: ${{ env.pythonLocation }}
key: test-sdpdeps-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml', '**/setup.*') }}
- run: pip install ".[test]" pytest-xdist
- run: pip install -e ".[test]" pytest-xdist
- run: pip install -r requirements-sdp.txt
- run: pip freeze
- run: pytest -n auto
Expand All @@ -125,7 +125,7 @@ jobs:
with:
path: ${{ env.pythonLocation }}
key: test-devdeps-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml', '**/setup.*') }}
- run: pip install ".[test]" pytest-xdist
- run: pip install -e ".[test]" pytest-xdist
- run: pip install -r requirements-dev.txt
- run: pip freeze
- run: pytest -n auto
Expand All @@ -147,7 +147,7 @@ jobs:
with:
path: ${{ env.pythonLocation }}
key: test-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml', '**/setup.*') }}
- run: pip install ".[test]" pytest-xdist
- run: pip install -e ".[test]" pytest-xdist
- run: pip freeze
- run: pytest -n auto ./docs --pyargs jwst
test_oldestdeps_with_coverage:
Expand All @@ -167,7 +167,7 @@ jobs:
with:
path: ${{ env.pythonLocation }}
key: test-coverage-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml', '**/setup.*') }}
- run: pip install ".[test]" pytest-xdist pytest-cov
- run: pip install -e ".[test]" pytest-xdist pytest-cov
- run: minimum_deps
- run: pip install --ignore-installed -r requirements-min.txt
- run: pip freeze
Expand All @@ -186,7 +186,7 @@ jobs:
with:
path: ${{ env.pythonLocation }}
key: test-coverage-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml', '**/setup.*') }}
- run: pip install ".[test]" pytest-xdist pytest-cov
- run: pip install -e ".[test]" pytest-xdist pytest-cov
- run: pip freeze
- run: pytest -n auto --cov-report=xml --cov=. --cov-config=setup.cfg
- run: coverage report -m
Expand Down

0 comments on commit e960894

Please sign in to comment.