We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4245f6b commit 3f8cd43Copy full SHA for 3f8cd43
.github/workflows/python.yml
@@ -29,16 +29,16 @@ jobs:
29
30
- name: Run flake8
31
run: |
32
- flake8 pystl/ --count --show-source --statistics
+ flake8 pythonstl/ --count --show-source --statistics
33
34
- name: Run mypy
35
36
- mypy pystl/ --ignore-missing-imports
+ mypy pythonstl/ --ignore-missing-imports
37
continue-on-error: true
38
39
- name: Run tests with coverage
40
41
- pytest tests/ --cov=pystl --cov-report=xml --cov-report=term
+ pytest tests/ --cov=pythonstl --cov-report=xml --cov-report=term
42
43
- name: Upload coverage reports
44
uses: codecov/codecov-action@v3
0 commit comments