about summary refs log tree commit diff stats
path: root/.github
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2021-07-18 21:10:16 +0200
committertoonn <toonn@toonn.io>2021-07-20 23:20:47 +0200
commitbdd3b4cb0e372ce78809f877b310374a503d6203 (patch)
tree36ec5554da5a87cad9f2ba815e149b7806b6f077 /.github
parente601d586f980c4381691ae236f2d36416eee513d (diff)
downloadranger-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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pypy.yml8
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