-
Notifications
You must be signed in to change notification settings - Fork 8
Tests
Marc-Olivier Buob edited this page Oct 4, 2021
·
3 revisions
You should check whether you can import minifold
modules. In your python3 interpreter, run for instance:
import minifold
from minifold.where import where
Install pytest for Python 3:
- Debian:
apt update
apt install python3-pytest
To run a single test, say test_select.py
:
cd tests
pytest-3 test_select.py # Or directly ./test_select.py
To run all tests:
cd tests
pytest-3