Skip to content

Commit

Permalink
Add "-e ." to requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
szokeasaurusrex committed Mar 5, 2024
1 parent 1e9cb69 commit 1185466
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install -e . -r dev-requirements.txt
- run: PYTEST_SENTRY_ALWAYS_REPORT=1 pytest tests
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install -r dev-requirements.txt
- run: PYTEST_SENTRY_ALWAYS_REPORT=1 pytest tests
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: |
pip install build
python -m build
- uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}
path: dist/*
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- run: |
pip install build
python -m build
- uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}
path: dist/*
1 change: 1 addition & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
-e .
pytest-rerunfailures
pytest<4; python_version < '3.0'

0 comments on commit 1185466

Please sign in to comment.