Skip to content

Commit 4b84d0c

Browse files
committed
Merge branch 'dev'
2 parents 6697f4c + 7fa2a3c commit 4b84d0c

File tree

6 files changed

+759
-43
lines changed

6 files changed

+759
-43
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
run: |
3030
python -m pip install --upgrade pip
3131
python -m pip install tox tox-gh-actions
32-
# - name: Do Type Checking
33-
# run: tox -e type --skip-missing-interpreters false -vv
32+
- name: Do Type Checking
33+
run: tox -e type --skip-missing-interpreters false -vv
3434
- name: Specify current package version to assist build tool
3535
run: echo "PKG_VERSION=$(python scripts/parse_version.py)" >> $GITHUB_ENV
3636
- name: Run Test Suite

.prospector.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# output-format: json
2+
3+
strictness: high
4+
test-warnings: true
5+
doc-warnings: false
6+
member-warnings: false
7+
inherits:
8+
- default
9+
ignore-paths:
10+
- docs
11+
ignore-patterns:
12+
- (^|/)skip(this)?(/|$)
13+
- src/cookiecutter_python/{{ cookiecutter.project_slug }}/tests/smoke_test.py
14+
autodetect: false
15+
max-line-length: 120
16+
17+
18+
# TOOLS
19+
20+
pyflakes:
21+
run: true
22+
disable:
23+
# we disable F821 this since the {{ cookiecutter }} templated python dict is technically an undefined name,
24+
# while pyflakes conducts static code analysis
25+
- F821
26+
27+
pyroma:
28+
run: true
29+
disable:
30+
- PYR15
31+
- PYR18
32+
33+
dodgy:
34+
run: true
35+
36+
mccabe:
37+
run: true
38+
options:
39+
max-complexity: 12
40+
41+
42+
# INACTIVE
43+
44+
pylint:
45+
run: false
46+
47+
bandit:
48+
run: false
49+
50+
frosted:
51+
run: false
52+
53+
pep8:
54+
run: false
55+
56+
pep257:
57+
run: false
58+
59+
mypy:
60+
run: false
61+
62+
vulture:
63+
run: false

0 commit comments

Comments
 (0)