diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index c130856..51e1e4a 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install - run: pip install -e . + run: pip install . - name: Install packages needed for tests # pyright 1.1.336 can produce annoying errors run: pip install pytest pytest-cov pyright==1.1.335 diff --git a/.github/workflows/linter_checks.yml b/.github/workflows/linter_checks.yml index 87ffa72..0b9ed63 100644 --- a/.github/workflows/linter_checks.yml +++ b/.github/workflows/linter_checks.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install - run: pip install -e . + run: pip install . - name: Install packages needed for tests # pyright 1.1.336 can produce annoying errors run: pip install pyright==1.1.335 flake8 pytest