File tree Expand file tree Collapse file tree 5 files changed +18
-3
lines changed Expand file tree Collapse file tree 5 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 4343
4444 - name : " Run Tests for Python ${{ matrix.config.python-version }}"
4545 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 4646 - name : " Run Tests for Python ${{ matrix.config.python-version }}"
4747 run : python -m tox -e "${{ matrix.config.testenvs }}"
4848
49-
5049 - name : " Upload Coverage 🚀"
5150 uses : actions/upload-artifact@v2
51+ if : ${{ always() }}
5252 with :
5353 name : " coverage-${{ matrix.config.python-version }}"
5454 path : .coverage
Original file line number Diff line number Diff line change 4444
4545 - name : " Run Tests for Python ${{ matrix.config.python-version }}"
4646 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 5959 - id : pyupgrade
6060 args :
6161 - --py36-plus
62+ - --keep-runtime-typing
6263
6364 - repo : https://github.com/Lucas-C/pre-commit-hooks
6465 rev : v1.1.9
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ collections-import-rewrite = 20
44reformat-generics = 40
55noqa-reformat = 60
66ellipsis-reformat = 70
7+ squish_stubs = 80
78
89[config ]
910indent = " \t "
@@ -19,8 +20,7 @@ priority = 50
1920yapf_style = " .style.yapf"
2021
2122[hooks .isort .kwargs ]
22- line_length = 115
23- indent = " \"\t\t\" "
23+ indent = " \t\t "
2424multi_line_output = 8
2525import_heading_stdlib = " stdlib"
2626import_heading_thirdparty = " 3rd party"
You can’t perform that action at this time.
0 commit comments