From e96089413bf383d00f84cb4cdaca871fdb24a69e Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Tue, 7 Jun 2022 08:53:04 -0400 Subject: [PATCH] attempt editable install --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88d3681b6d..b9b4ee4cec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 @@ -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 @@ -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: @@ -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 @@ -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