Replies: 1 comment
-
And of course I found the solution the minute I post this. The problem was the
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm running
isort
as a part of another script which calls isort and gives an absolute path to it. After some time debugging why isort works locally but not in pipelines I found out that isort by default skips any folders with "build" and Bitbucket pipelines runs the CI pipelines inside a folder called/opt/atlassian/pipelines/agent/build
(which ends in "build").The config indeed has "build" in the "skip":
which are coming from the "defaults":
From isort help I can see the following target options:
but is there other way to "skip the skip", other than masking it with nonexistent folder name, like
?
Beta Was this translation helpful? Give feedback.
All reactions