Skip to content

Commit c4f58bd

Browse files
Updated files with 'repo_helper'. (#1)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent bd8ced2 commit c4f58bd

File tree

6 files changed

+18
-20
lines changed

6 files changed

+18
-20
lines changed

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ jobs:
7272
working-directory: coverage
7373

7474
- name: Combine Coverage
75-
run: |block_template.globals["make_actions_linux_shield"]
75+
run: |
7676
shopt -s globstar
7777
python -m coverage combine coverage/**/.coverage
7878
79-
- name: "Upload Combined Coverage Aretfact"
79+
- name: "Upload Combined Coverage Artefact"
8080
uses: actions/upload-artifact@v2
8181
with:
8282
name: "combined-coverage"

.isort.cfg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ remove_redundant_aliases = True
1414
default_section = THIRDPARTY
1515
known_third_party =
1616
coverage
17-
coverage-pyver-pragma
18-
domdf-python-tools
17+
coverage_pyver_pragma
18+
domdf_python_tools
1919
github
2020
pytest
21-
pytest-cov
22-
pytest-randomly
23-
pytest-timeout
21+
pytest_cov
22+
pytest_randomly
23+
pytest_timeout
2424
requests
2525
sphinx
26-
sphinx-toolbox
26+
sphinx_toolbox
2727
known_first_party = sphinx_autofixture

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ repos:
5959
- id: forbid-crlf
6060

6161
- repo: https://github.com/domdfcoding/yapf-isort
62-
rev: v0.5.2
62+
rev: v0.5.4
6363
hooks:
6464
- id: yapf-isort
6565
exclude: ^(doc-source/conf|__pkginfo__|make_conda_recipe|setup)\.py$
6666

6767
- repo: https://github.com/domdfcoding/dep_checker
68-
rev: v0.3.1
68+
rev: v0.4.1
6969
hooks:
7070
- id: dep_checker
7171
args:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ sphinx-autofixture
3535
:alt: Docs Check Status
3636

3737
.. |travis| image:: https://github.com/domdfcoding/sphinx-autofixture/workflows/Linux%20Tests/badge.svg
38-
:target: https://github.com/domdfcoding/sphinx-autofixture/actions?query=workflow%3A%Linux+Tests%22
38+
:target: https://github.com/domdfcoding/sphinx-autofixture/actions?query=workflow%3A%22Linux+Tests%22
3939
:alt: Linux Test Status
4040

4141
.. |actions_windows| image:: https://github.com/domdfcoding/sphinx-autofixture/workflows/Windows%20Tests/badge.svg

repo_helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ python_versions:
1717
- 3.8
1818
- 3.9
1919

20-
travis_pypi_secure: "SI5A9t3XTMps5tVwIOd7SHz3zg0KQGJB6ZjK6i+xz30nkVCb8fLu4/mK3J4y6oJ7rlmL+wMeyqHCeryNpWtb9iJyGeEVG/e4pLhk/rF4okQHxKZ0bN6h+WjwF8zolrmalxDkMdNNrIrGhzkUZL+qZoiR80jgINmhUHfPlfqyuIql39sXLyNgPXitqCjUakMHzpYyCIJP9re1CBcen1u9mqQkxASf8LdHfDmr/K7+Y9o/iND5N2llkTNjnoPMHLwxWx4OojxvaXiTrGBmZ5XtlfPwDeGkXQ2S0QVORR7jJX3oQ8GDzIaFfTNiM8WyInKFUbfCyuO9+eyjNwt8FK+taqTv7z9b+fMxX1uUn9zMesIfgKCWtzSoEEPufss4cVo3PCDrpqOXvVlbgjrvQiYJHB/n5UMu1mFnQtyHC7RH0eIHSTS7l0KMlGZPDJbfeW8HBdXl0CzlvmLoVOV9hZ1DHX8WBYZh7abT36pyydx4WsNHr1tnxAJLE4WzA37tzef40zhSlbUJx6Plgt+r25JcxOsMm1dDutMB5SlSwiRR07ba7YQCpYNDdLLv3t0UGK0Tfvt02i0aTtxrBjm3zKbXS+xd06XTFRnI7iIzQflZeUV8AOGrfzB0CH1bIIOwW0eInxJ1aQM9uxPjrmxay2vrEH98T+cxGoRl0Q7XepnmvgY="
2120

2221
sphinx_html_theme: furo
2322

tox.ini

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# You may add new sections, but any changes made to the following sections will be lost:
33
# * tox
44
# * envlists
5-
# * travis
65
# * gh-actions
76
# * testenv
87
# * testenv:docs
@@ -28,13 +27,6 @@ test = py36, py37, py38, py39
2827
qa = mypy, lint
2928
cov = py36, coverage
3029

31-
[travis]
32-
python =
33-
3.6: py36, build, mypy
34-
3.7: py37, build
35-
3.8: py38, build
36-
3.9: py39, build
37-
3830
[gh-actions]
3931
python =
4032
3.6: py36, build, mypy
@@ -168,3 +160,10 @@ package = sphinx_autofixture
168160
[pytest]
169161
addopts = --color yes --durations 25
170162
timeout = 300
163+
164+
[travis]
165+
python =
166+
3.6: py36, build, mypy
167+
3.7: py37, build
168+
3.8: py38, build
169+
3.9: py39, build

0 commit comments

Comments
 (0)