Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions supply_chain_scanner/test_supply_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ def test_no_suspicious_pth_files(self):
"_virtualenv.pth", # virtualenv
"a1_coverage.pth", # coverage.py -- process startup for test coverage
"coverage.pth", # coverage.py -- alternative name
"pytest-cov.pth", # pytest-cov -- subprocess coverage via startup hook
}

for pth_file in pth_files:
Expand Down Expand Up @@ -651,6 +652,7 @@ def test_no_credential_exfiltration_in_startup(self):
"virtualenv.pth",
"a1_coverage.pth",
"coverage.pth",
"pytest-cov.pth",
}

for pth_file in pth_files:
Expand Down
Loading