We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a32fd0a commit e889768Copy full SHA for e889768
3 files changed
.github/workflows/python.yml
@@ -35,4 +35,4 @@ jobs:
35
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
36
- name: Test with pytest
37
run: |
38
- pytest --ignore-glob=".*api.*py"
+ pytest --ignore-glob="*api.py"
.gitlab-ci.yml
@@ -12,7 +12,7 @@ stages:
12
script:
13
- pip install -r requirements.txt
14
- pip install -r test-requirements.txt
15
- - pytest --cov=lighter --ignore-glob .*api.*py
+ - pytest --cov=lighter --ignore-glob *api.py
16
17
pytest-3.8:
18
extends: .pytest
tox.ini
@@ -6,4 +6,4 @@ deps=-r{toxinidir}/requirements.txt
6
-r{toxinidir}/test-requirements.txt
7
8
commands=
9
- pytest --cov=lighter --ignore-glob .*api.*py
+ pytest --cov=lighter --ignore-glob *api.py
0 commit comments