Ver código fonte

ci: run full test suite on changes to pyproject.toml

We had a rule for requirements-dev.txt, but now we have switched
to pyproject.toml for dependencies, we need to run tests on changes
to that.

PR #4999
Jason Rumney 1 semana atrás
pai
commit
55e0535c82
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      .github/workflows/tests.yml

+ 2 - 2
.github/workflows/tests.yml

@@ -5,11 +5,11 @@ on:
   pull_request:
   pull_request:
     paths:
     paths:
       - '**.py'
       - '**.py'
-      - 'requirements-dev.txt'
+      - 'pyproject.toml'
   push:
   push:
     paths:
     paths:
       - '**.py'
       - '**.py'
-      - 'requirements-dev.txt'
+      - 'pyproject.toml'
 
 
 jobs:
 jobs:
   tests:
   tests: