Browse Source

tests: auto run tests when requirements-dev.txt changes

Earlier we added requirements.txt to the paths that trigger full tests
on PR and push, but that is not actually relevant, it is the -dev
version we need to run them on.

PR #3874
Jason Rumney 8 months ago
parent
commit
5305786c90
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/tests.yml

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

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