Skip to content

pip-compile manager doesn't submit any PRs #28987

Closed Answered by craigds
craigds asked this question in Request Help
Discussion options

You must be logged in to vote

I figured it out!

Turns out the regexes are javascript regexes, and so they needed forward-slash escaped. I don't know wh;y the log couldn't have said something like no files matched <regex> though.

so for future readers the change that fixed it was:

    "fileMatch": [
-      "(^|/)requirements/production\\.txt$",
-      "(^|/)requirements/test\\.txt$",
-      "(^|/)requirements/local\\.txt$"
+      "(^|/)requirements\\/production\\.txt$",
+      "(^|/)requirements\\/test\\.txt$",
+      "(^|/)requirements\\/local\\.txt$"
    ],

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by craigds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
auto:reproduction A minimal reproduction is necessary to proceed
1 participant