File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 4040 - name : Install requirments
4141 run : pip3.11 install -r requirements/requirements_dev.txt
4242
43+ - name : Install test dependencies for pure-python-imports
44+ if : matrix.tests.name == 'pure-python-imports'
45+ run : |
46+ pip3.11 install -r requirements/requirements.in
47+ pip3.11 install -r requirements/requirements_testing.txt
48+
49+ - name : Run pure-python-imports check
50+ if : matrix.tests.name == 'pure-python-imports'
51+ run : python tools/check_pure_python_imports.py
52+
4353 - name : Run check ${{ matrix.tests.name }}
54+ if : matrix.tests.name != 'pure-python-imports'
4455 run : make ${{ matrix.tests.command }}
Original file line number Diff line number Diff line change @@ -49,9 +49,6 @@ check_flake8:
4949check_isort :
5050 tox -e isort -- --check $(CHECK_SYNTAX_FILES )
5151
52- # # Check that lib modules can be imported with pure Python (no Django setup)
53- check_pure_python_imports :
54- $(PYTHON ) tools/check_pure_python_imports.py
5552
5653# # Starts a postgres container in the background if one is not running
5754# Options:
You can’t perform that action at this time.
0 commit comments