diff options
Diffstat (limited to '.github/workflows/core.yml')
-rw-r--r-- | .github/workflows/core.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index be932275a..f2d31c134 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -23,11 +23,9 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Install nose - run: pip install nose + - name: Install pytest + run: pip install pytest - name: Run tests continue-on-error: False - env: - YTDL_TEST_SET: core - run: ./devscripts/run_tests.${{ matrix.run-tests-ext }} + run: ./devscripts/run_tests.${{ matrix.run-tests-ext }} core # Linter is in quick-test |