From 910e1cbbd0a8903d40b0e3b1afa087555d8582fe Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Tue, 5 Mar 2024 17:09:47 +0100 Subject: [PATCH] build: Add `-e .` to `dev-requirements.txt` (#29) * Add "-e ." to `requirements.txt` * Undo auto-formatting changes --- .github/workflows/main.yml | 2 +- dev-requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9649a3d..0953073 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - - run: pip install -e . -r dev-requirements.txt + - run: pip install -r dev-requirements.txt - run: PYTEST_SENTRY_ALWAYS_REPORT=1 pytest tests dist: runs-on: ubuntu-latest diff --git a/dev-requirements.txt b/dev-requirements.txt index 2480419..f060cd6 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,2 +1,3 @@ +-e . pytest-rerunfailures pytest<4; python_version < '3.0'