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 83cd072 commit ab69033Copy full SHA for ab69033
.github/workflows/code_lint_and_test.yml
@@ -72,11 +72,17 @@ jobs:
72
python -m pip install --upgrade pip
73
python -m pip install -r requirements/requirements.txt
74
75
- # Python tests with pytest
+ # Python application tests with pytest
76
- name: Python application tests with pytest
77
run: |
78
export PYTHONPATH=$PYTHONPATH:${{ env.PYTHONPATH }}
79
- pytest tests/
+ pytest tests/test_namedtuple_maker.py
80
+
81
+ # Python logging tests with pytest
82
+ - name: Python application tests with pytest
83
+ run: |
84
+ export PYTHONPATH=$PYTHONPATH:${{ env.PYTHONPATH }}
85
+ pytest -s tests/test_namedtuple_logger.py
86
87
package-install:
88
name: Test PyPI package installation
0 commit comments