We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f652e1 commit fa18b82Copy full SHA for fa18b82
dev_tools/bash_scripts_test.py
@@ -573,9 +573,12 @@ def test_incremental_format_branch_selection(tmpdir_factory):
573
'git checkout -q alt\n'
574
'echo " print(1)" > alt.py\n'
575
'git add -A\n'
576
- 'git commit -q -m test3 --no-gpg-sign\n',
+ 'git commit -q -m test3 --no-gpg-sign\n'
577
+ 'export CI=true\n',
578
+ additional_intercepts=['isort'],
579
)
580
assert result.returncode == 0
581
+ assert 'INTERCEPTED isort --color --check --diff alt.py' in result.stdout
582
assert 'INTERCEPTED black --color --check --diff alt.py' in result.stdout
583
assert result.stderr.startswith("Comparing against revision 'main' (merge base ")
584
0 commit comments