Skip to content

Commit

Permalink
Merge branch 'automatic-merge' into 'master'
Browse files Browse the repository at this point in the history
Update cookiecutter-e3 template

See merge request it/e3-core!48
  • Loading branch information
adanaja committed Oct 14, 2024
2 parents 99b54e1 + c874239 commit c5abc02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
5 changes: 0 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ check = [
"types-requests",
"types-setuptools",
]
doc = [
"sphinx",
"sphinx-autoapi",
"sphinx_rtd_theme==1.3.0",
]

[project.scripts]
e3 = "e3.sys:main"
Expand Down
13 changes: 9 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,18 @@ extras = test
# Run testsuite with coverage when '-cov' and with multi-threading when '-xdist'
# is in the env name
commands=
pytest -vv --ignore=build -v --html=pytest-report.html \
pytest -vvv --ignore=build --html=pytest-report.html \
--junit-xml=pytest-report.xml --self-contained-html \
xdist: -n auto \
cov: --e3-cov-rewrite {envsitepackagesdir} src \
cov: --cov {envsitepackagesdir}/e3 --cov-branch \
cov: --cov {envsitepackagesdir}/e3/ --cov-branch \
[]
codecov: codecov

[testenv:check]
extras = check
extras =
config
check
commands =
# Run bandit checks. Accept yaml.load(), pickle, and exec since this
# is needed by e3. There is also e3.env.tmp_dir that returns the TMPDIR
Expand All @@ -36,7 +38,10 @@ commands =

[testenv:docs]
changedir = docs
extras = doc
deps =
sphinx==7.2.6
sphinx-autoapi
sphinx_rtd_theme==1.3.0
commands =
sphinx-build -q -b html -d build/doctrees source build/html

Expand Down

0 comments on commit c5abc02

Please sign in to comment.