We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5327191 commit b4c7070Copy full SHA for b4c7070
.github/workflows/unit_tests.yml
@@ -123,7 +123,7 @@ jobs:
123
run: |
124
# make sure there are no (top-level) "import setuptools" or "import pkg_resources" statements,
125
# since EasyBuild should not have a runtime requirement on setuptools
126
- SETUPTOOLS_IMPORTS=$(egrep -RI '^(from|import)[ ]*pkg_resources|^(from|import)[ ]*setuptools' * || true)
+ SETUPTOOLS_IMPORTS=$(egrep --exclude setup.py -RI '^(from|import)[ ]*pkg_resources|^(from|import)[ ]*setuptools' * || true)
127
test "x$SETUPTOOLS_IMPORTS" = "x" || (echo "Found setuptools and/or pkg_resources imports in easybuild/:\n${SETUPTOOLS_IMPORTS}" && exit 1)
128
129
- name: install sources
0 commit comments