diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e37cb9..bca40c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,11 +20,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install tox - pip install pytest - name: Test run: | - tox -e py # Run tox using the version of Python in `PATH` + ./run_tests.sh + shell: bash \ No newline at end of file diff --git a/run_tests.sh b/run_tests.sh new file mode 100755 index 0000000..d232a8e --- /dev/null +++ b/run_tests.sh @@ -0,0 +1,4 @@ +python -m pip install --upgrade pip +pip install tox +pip install pytest +tox -e py \ No newline at end of file