diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4d24efd..f53869c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -25,11 +25,5 @@ jobs: # cd test # ./initfarm.sh # ./initdb.sh - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install tox tox-gh-actions - - - name: Run Tox - run: tox + - name: Run tests + run: make pytest diff --git a/Makefile b/Makefile index 9dbac6c..a95b73f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ venv/: python3 -m venv venv + venv/bin/pip install --upgrade pip wheel venv/bin/pytest: venv/ venv/bin/pip install -e ".[test]"