Skip to content
Snippets Groups Projects
Commit c7ba420a authored by David Douard's avatar David Douard
Browse files

Apply swh-py-template 0.1.6

parent 5d28a63d
No related branches found
No related tags found
1 merge request!78Apply swh-py-template 0.1.6
Pipeline #5884 passed
# Changes here will be overwritten by Copier # Changes here will be overwritten by Copier
_commit: v0.1.5 _commit: v0.1.6
_src_path: https://gitlab.softwareheritage.org/swh/devel/swh-py-template.git _src_path: https://gitlab.softwareheritage.org/swh/devel/swh-py-template.git
description: Software Heritage CVS Loader description: Software Heritage CVS Loader
distribution_name: swh-loader-cvs distribution_name: swh-loader-cvs
......
...@@ -8,6 +8,10 @@ ...@@ -8,6 +8,10 @@
__pycache__ __pycache__
build/ build/
dist/ dist/
# these are symlinks created by a hook in swh-docs' main sphinx conf.py
docs/README.rst docs/README.rst
docs/README.md docs/README.md
# this should be a symlink for people who want to build the sphinx doc
# without using tox, generally created by the swh-env/bin/update script
docs/Makefile.sphinx
swh/loader/cvs/*.so swh/loader/cvs/*.so
...@@ -33,6 +33,9 @@ repos: ...@@ -33,6 +33,9 @@ repos:
name: Check source code spelling name: Check source code spelling
exclude: cvs2gitdump|rcsparse exclude: cvs2gitdump|rcsparse
stages: [commit] stages: [commit]
- id: codespell
name: Check commit message spelling
stages: [commit-msg]
- repo: local - repo: local
hooks: hooks:
......
include swh-docs/Makefile.sphinx include Makefile.sphinx
include Makefile.local include Makefile.local
...@@ -54,3 +54,4 @@ use_parentheses = true ...@@ -54,3 +54,4 @@ use_parentheses = true
ensure_newline_before_comments = true ensure_newline_before_comments = true
line_length = 88 line_length = 88
force_sort_within_sections = true force_sort_within_sections = true
known_first_party = ['swh']
[pytest] [pytest]
norecursedirs = build docs .* norecursedirs = build docs .*
asyncio_mode = strict
addopts = "--import-mode=importlib"
markers = markers =
fs: execute tests that write to the filesystem fs: execute tests that write to the filesystem
asyncio_mode = strict
...@@ -17,20 +17,19 @@ deps = ...@@ -17,20 +17,19 @@ deps =
swh.scheduler[testing] swh.scheduler[testing]
commands = commands =
pytest --doctest-modules \ pytest --doctest-modules \
--import-mode importlib \
--rootdir {envsitepackagesdir} \ --rootdir {envsitepackagesdir} \
--cov={envsitepackagesdir}/swh/loader/cvs \ --cov={envsitepackagesdir}/swh/loader/cvs \
--cov-branch \ --cov-branch \
{envsitepackagesdir}/swh/loader/cvs \ {envsitepackagesdir}/swh/loader/cvs \
{posargs} {posargs}
# --rootdir and --import-mode are required to make tests that depends # --rootdir (with --import-mode from pytest.ini) are required to make tests
# on the test file to be a proper submodule of the swh namespace after # that depends on the test file to be a proper submodule of the swh namespace
# migration to PEP420 (implicit namespace). # after migration to PEP420 (implicit namespace).
[testenv:black] [testenv:black]
skip_install = true skip_install = true
deps = deps =
black==22.10.0 black==23.1.0
commands = commands =
{envpython} -m black --check swh {envpython} -m black --check swh
...@@ -66,4 +65,4 @@ setenv = ...@@ -66,4 +65,4 @@ setenv =
# turn warnings into errors # turn warnings into errors
SPHINXOPTS = -W SPHINXOPTS = -W
commands = commands =
make -I {env_dir}/share/ -C docs make -I {env_dir}/share/swh-docs -C docs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment