diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 05445774..7c4bdf41 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -8,7 +8,7 @@ on: pull_request: jobs: - test: + pytest: runs-on: ubuntu-latest strategy: fail-fast: true @@ -23,7 +23,6 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - architecture: x64 - name: Install run: | @@ -32,4 +31,4 @@ jobs: pip install pytest - name: Run tests - run: pytest + run: pytest -v