Skip to content

Commit

Permalink
Merge pull request #1537 from edwardchalstrey1/pip-tools-executable
Browse files Browse the repository at this point in the history
Add pip-tools to NON_IMPORTABLE_PACKAGES
  • Loading branch information
edwardchalstrey1 authored Aug 4, 2023
2 parents 6e59651 + a9b5143 commit 8b87e0b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/srd_smoke_tests/test_packages_installed_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import subprocess
import sys
import warnings

import pkg_resources

versions = {
Expand All @@ -22,7 +23,10 @@
]

# For these packages we check for an executable as they are not importable
NON_IMPORTABLE_PACKAGES = {"repro-catalogue": "catalogue"}
NON_IMPORTABLE_PACKAGES = {
"pip-tools": "pip-compile",
"repro-catalogue": "catalogue",
}

# Some packages are imported using a different name than they `pip install` with
IMPORTABLE_NAMES = {
Expand Down

0 comments on commit 8b87e0b

Please sign in to comment.