diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 520b2b2e..2cd10e8b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,12 +26,12 @@ jobs: flake8 - name: Test run: | - python -m coverage run --source=thefuck,tests -m py.test -v --capture=sys tests + coverage run --source=thefuck,tests -m py.test -v --capture=sys tests - name: Functional Test if: ${{ matrix.os == 'ubuntu-latest' && matrix.pyversion == '3.8' }} run: | - python -m coverage run --source=thefuck,tests -m py.test -v --capture=sys tests -m functional --enable-functional + coverage run --source=thefuck,tests -m py.test -v --capture=sys tests -m functional --enable-functional - name: Post Coverage to Coveralls if: ${{ matrix.os == 'ubuntu-latest' && matrix.pyversion == '3.8' }} run: | - python -m coveralls \ No newline at end of file + coveralls \ No newline at end of file