diff options
author | toonn <toonn@toonn.io> | 2021-07-18 21:10:16 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2021-07-20 23:20:47 +0200 |
commit | bdd3b4cb0e372ce78809f877b310374a503d6203 (patch) | |
tree | 36ec5554da5a87cad9f2ba815e149b7806b6f077 | |
parent | e601d586f980c4381691ae236f2d36416eee513d (diff) | |
download | ranger-bdd3b4cb0e372ce78809f877b310374a503d6203.tar.gz |
Actions: Drop on_pullrequest from Pypy
We need to get it passing first before we can make it a useful status check on PRs.
-rw-r--r-- | .github/workflows/pypy.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/pypy.yml b/.github/workflows/pypy.yml index 0fa60042..87e072fb 100644 --- a/.github/workflows/pypy.yml +++ b/.github/workflows/pypy.yml @@ -1,14 +1,10 @@ -name: PEP8 and tests +name: Pypy tests on: push: paths: - '.github/workflows/python.yml' - '**.py' - pull_request: - paths: - - '.github/workflows/python.yml' - - '**.py' jobs: test_py: @@ -29,6 +25,6 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - - name: Pypy flake8 and test + - name: Pypy lints and tests run: | make test_pylint test_flake8 test_pytest test_doctest test_other |