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 tests to tests folder #216

Merged
merged 20 commits into from
Apr 5, 2024
Merged
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
11 changes: 2 additions & 9 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,7 @@ or, if additional access rights are needed (Unix):

sudo python setup.py install

* The tests programs (test_*.py) are meant to be run through the Nose
testing framework. This can be achieved for instance with a command
* The tests programs (test_*.py) are meant to be run through pytest. This can be achieved for instance with a command
like

nosetests -sv uncertainties/

or simply

nosetests uncertainties/

(for a less verbose output).
pytest ./tests
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ Changelog = "https://github.com/lmfit/uncertainties/blob/master/CHANGES.rst"

[project.optional-dependencies]
optional = ["numpy"]

[tool.pytest.ini_options]
testpaths = ["tests"]
Loading