File tree Expand file tree Collapse file tree 3 files changed +4
-30
lines changed Expand file tree Collapse file tree 3 files changed +4
-30
lines changed Original file line number Diff line number Diff line change @@ -3,25 +3,7 @@ name: Python package
3
3
on : [push]
4
4
5
5
jobs :
6
- lint :
7
- runs-on : ubuntu-latest
8
-
9
- steps :
10
- - uses : actions/checkout@v2
11
-
12
- - name : Setup Python
13
- uses : actions/setup-python@v2
14
- with :
15
- python-version : 3.9
16
-
17
- - name : Install tox and any other packages
18
- run : pip install tox
19
-
20
- - name : Check for lint
21
- run : tox -e lint
22
-
23
6
build :
24
- needs : lint
25
7
runs-on : ${{ matrix.os }}
26
8
strategy :
27
9
matrix :
Original file line number Diff line number Diff line change 16
16
import os
17
17
18
18
sys .path .append (os .path .abspath (".." ))
19
- from tap import __version__
19
+ from tap import __version__ # noqa
20
20
21
21
# If extensions (or modules to document with autodoc) are in another directory,
22
22
# add these directories to sys.path here. If the directory is relative to the
191
191
192
192
latex_elements = {
193
193
# The paper size ('letterpaper' or 'a4paper').
194
- #'papersize': 'letterpaper',
194
+ # 'papersize': 'letterpaper',
195
195
# The font size ('10pt', '11pt' or '12pt').
196
- #'pointsize': '10pt',
196
+ # 'pointsize': '10pt',
197
197
# Additional stuff for the LaTeX preamble.
198
- #'preamble': '',
198
+ # 'preamble': '',
199
199
}
200
200
201
201
# Grouping the document tree into LaTeX files. List of tuples
Original file line number Diff line number Diff line change @@ -15,14 +15,6 @@ commands = python tap/tests/run.py
15
15
[testenv:module]
16
16
commands = python -m tap
17
17
18
- [testenv:lint]
19
- deps =
20
- black
21
- flake8
22
- commands =
23
- flake8 tap setup.py
24
- black --check tap setup.py
25
-
26
18
[testenv:integration]
27
19
deps =
28
20
pytest
You can’t perform that action at this time.
0 commit comments