Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Remove 'src' from pytest test testpaths to allow for non-editable install in CI #1467

Merged
merged 18 commits into from
Oct 19, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: Remove in-tree-build pip option
Avoids in pip 21.3+:

DEPRECATION: In-tree builds are now the default. pip 22.1 will enforce this behaviour change.
  • Loading branch information
matthewfeickert committed Oct 19, 2021
commit e164d3373e6c14c0f44eced46a72826570b18dc0
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip --quiet --use-feature=in-tree-build install --upgrade .[docs,test]
python -m pip --quiet install --upgrade .[docs,test]
python -m pip install yq
python -m pip list
sudo apt-get update
Expand Down