diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3cd7fc1..b1e51da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,11 +28,8 @@ jobs: with: python-version: ${{ matrix.py }} - uses: actions/checkout@v4 - - name: Install tox-gh - run: python -m pip install tox-gh - - name: Setup test suite - run: tox r -vv --notest - - name: Run test suite - run: tox r --skip-pkg-install - env: - PYTEST_ADDOPTS: "-vv --durations=10" + - name: Install module + run: python -m pip install -e .[tests] + - name: run pytest + run: pytest +