소스 검색

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 2 주 전
부모
커밋
55e0535c82
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .github/workflows/tests.yml

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

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