forked from DeepTrackAI/DeepTrack2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
11 lines (11 loc) · 926 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
{
"scripts": {
"publish": "py setup.py sdist bdist_wheel && py -m twine upload --repository pypi dist/*",
"make-docs-windows": "cd _src && make html && Xcopy /Y /I /E .\\build\\html ..\\docs && type nul > ../docs/.nojekyll",
"full-make-docs-windows": "cd _src && py .\\autodoc_dt.py && make html && Xcopy /Y /I /E .\\build\\html ..\\docs && type nul > ../docs/.nojekyll",
"test": "set TF_CPP_MIN_LOG_LEVEL=2 && py -W ignore -m unittest discover",
"benchmark": "python -m pytest --benchmark-autosave --benchmark-autosave",
"benchmark:fluorescence": "python -m pytest ./deeptrack/benchmarks/test_fluorescence.py --benchmark-autosave --disable-pytest-warnings --benchmark-compare --benchmark-compare-fail=min:5%",
"benchmark:mie": "python -m pytest ./deeptrack/benchmarks/test_simulate_mie.py --benchmark-autosave --disable-pytest-warnings --benchmark-compare --benchmark-compare-fail=min:5%"
}
}