File tree Expand file tree Collapse file tree 5 files changed +22
-7
lines changed Expand file tree Collapse file tree 5 files changed +22
-7
lines changed Original file line number Diff line number Diff line change 43
43
44
44
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
45
45
run : python -m tox -e "${{ matrix.config.testenvs }}"
46
+
47
+ - name : " Upload Coverage 🚀"
48
+ uses : actions/upload-artifact@v2
49
+ if : ${{ always() }}
50
+ with :
51
+ name : " coverage-${{ matrix.config.python-version }}"
52
+ path : .coverage
Original file line number Diff line number Diff line change 46
46
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
47
47
run : python -m tox -e "${{ matrix.config.testenvs }}"
48
48
49
-
50
49
- name : " Upload Coverage 🚀"
51
50
uses : actions/upload-artifact@v2
51
+ if : ${{ always() }}
52
52
with :
53
53
name : " coverage-${{ matrix.config.python-version }}"
54
54
path : .coverage
Original file line number Diff line number Diff line change 44
44
45
45
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
46
46
run : python -m tox -e "${{ matrix.config.testenvs }}"
47
+
48
+ - name : " Upload Coverage 🚀"
49
+ uses : actions/upload-artifact@v2
50
+ if : ${{ always() }}
51
+ with :
52
+ name : " coverage-${{ matrix.config.python-version }}"
53
+ path : .coverage
Original file line number Diff line number Diff line change 25
25
- id : end-of-file-fixer
26
26
27
27
- repo : https://github.com/domdfcoding/pre-commit-hooks
28
- rev : v0.1.6
28
+ rev : v0.2.0
29
29
hooks :
30
30
- id : requirements-txt-sorter
31
31
args :
@@ -54,11 +54,12 @@ repos:
54
54
- id : rst-inline-touching-normal
55
55
56
56
- repo : https://github.com/asottile/pyupgrade
57
- rev : v2.7.4
57
+ rev : v2.9.0
58
58
hooks :
59
59
- id : pyupgrade
60
60
args :
61
61
- --py36-plus
62
+ - --keep-runtime-typing
62
63
63
64
- repo : https://github.com/Lucas-C/pre-commit-hooks
64
65
rev : v1.1.9
@@ -67,10 +68,10 @@ repos:
67
68
- id : forbid-crlf
68
69
69
70
- repo : https://github.com/repo-helper/formate
70
- rev : v0.1.0
71
+ rev : v0.2.5
71
72
hooks :
72
73
- id : formate
73
- exclude : ^(doc-source/conf|__pkginfo__|make_conda_recipe|setup)\.py$
74
+ exclude : ^(doc-source/conf|__pkginfo__|make_conda_recipe|setup)\.(_)? py$
74
75
75
76
- repo : https://github.com/domdfcoding/dep_checker
76
77
rev : v0.4.1
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ collections-import-rewrite = 20
4
4
reformat-generics = 40
5
5
noqa-reformat = 60
6
6
ellipsis-reformat = 70
7
+ squish_stubs = 80
7
8
8
9
[config ]
9
10
indent = " \t "
@@ -19,8 +20,7 @@ priority = 50
19
20
yapf_style = " .style.yapf"
20
21
21
22
[hooks .isort .kwargs ]
22
- line_length = 115
23
- indent = " \"\t\t\" "
23
+ indent = " \t\t "
24
24
multi_line_output = 8
25
25
import_heading_stdlib = " stdlib"
26
26
import_heading_thirdparty = " 3rd party"
You can’t perform that action at this time.
0 commit comments