Skip to content

Commit 3039619

Browse files
committed
Updated files using git_helper
1 parent ffb3c47 commit 3039619

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
on:
5757
repo: domdfcoding/domdf_python_tools
5858
provider: script
59-
script: .ci/travis_deploy_conda.sh || travis_terminate 1;
59+
script: .ci/travis_deploy_conda.sh || travis_terminate 1
6060

6161
- stage: deploy_releases
6262
python: "3.6"
@@ -67,4 +67,4 @@ jobs:
6767
on:
6868
repo: domdfcoding/domdf_python_tools
6969
provider: script
70-
script: python .ci/copy_pypi_2_github.py || travis_terminate 1;
70+
script: python .ci/copy_pypi_2_github.py || travis_terminate 1

doc-source/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
"sphinx.ext.todo",
4242
"sphinxemoji.sphinxemoji",
4343
"sphinx_autodoc_typehints",
44-
4544
]
4645

4746
sphinxemoji_style = 'twemoji'
@@ -68,7 +67,6 @@
6867
"Django": ('https://docs.djangoproject.com/en/dev/', 'https://docs.djangoproject.com/en/dev/_objects/'),
6968
"sarge": ('https://sarge.readthedocs.io/en/latest/', None),
7069
"attrs": ('https://www.attrs.org/en/stable/', None),
71-
7270
}
7371

7472
html_theme = 'sphinx_rtd_theme'
@@ -92,7 +90,7 @@
9290
htmlhelp_basename = slug
9391

9492
latex_documents = [
95-
('index', '{0}.tex'.format(slug), project, author, 'manual'),
93+
('index', f'{slug}.tex', project, author, 'manual'),
9694
]
9795

9896
man_pages = [

doc-source/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extras_require
22
pytz >=2019.1
33
sphinx >=3.0.3
4-
sphinx-autodoc-typehints
4+
sphinx-autodoc-typehints >=1.10.3
55
sphinx_rtd_theme >=0.4.3
66
sphinxcontrib-httpdomain >=1.7.0
77
sphinxemoji >=0.1.5

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ deps = -r{toxinidir}/tests/requirements.txt
2020
commands =
2121
python --version
2222
; Run tests
23-
python -m pytest --cov=domdf_python_tools tests/
23+
python -m pytest --cov=domdf_python_tools --reruns 1 --reruns-delay 30 -r aR tests/
2424

2525
[testenv:docs]
2626
basepython = python3.6

0 commit comments

Comments
 (0)