Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move tephi/tests to tests #167

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ include .coveragerc
include .flake8
include .git-blame-ignore-revs
include tox.ini
recursive-include tephi *.txt
recursive-include tests *.json
recursive-include tests *.npz
recursive-include requirements *.yml
recursive-include docs *.bat
recursive-include docs *.ico
Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
exclude =
.git,
docs,
tephi/tests/__init__.py
tests/__init__.py
.eggs

[tool:pytest]
testpaths =
tephi/
/
markers =
graphical: mark a test as a graphical test
addopts =
Expand Down Expand Up @@ -65,6 +65,6 @@ python_requires = >=3.8

[options.package_data]
tephi =
etc/test_data/*.txt
tests/results/*.npz
tests/results/imagerepo.json
tephi/etc/test_data/*.txt
results/*.npz
results/imagerepo.json
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ setenv =
BUILDDIR = {toxinidir}/docs/_build
conda_env = requirements/rtd.yml
commands =
sphinx-apidoc -o "{env:DOCSDIR}/api" tephi tephi/tests
sphinx-apidoc -o "{env:DOCSDIR}/api" tephi tests
sphinx-build -W --keep-going -b html -d "{env:BUILDDIR}/doctrees" "{env:DOCSDIR}" "{env:BUILDDIR}/html" {posargs}
# when running the doctests, also check that any snippets in the
# docs are representative of the module output
Expand Down
Loading