You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently CONTRIBUTING.rst instructs me to run python setup.py to build and test, but there is no setup.py
Describe the solution you'd like
I would like command line examples on how to build/test/lint the project and the documentation locally.
Describe alternatives you've considered
I have looked at setup.cfg and pyproject.toml. I see that the build tool is flit. I can make up a venv and run flit install --deps all, but then pytest still fails with No module named 'selenium'. I can sort of get a sphinx build of the documentation running with sphinx-build -b html docs /tmp/test but that doesn't pull in the code commentary correctly.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently
CONTRIBUTING.rst
instructs me to runpython setup.py
to build and test, but there is nosetup.py
Describe the solution you'd like
I would like command line examples on how to build/test/lint the project and the documentation locally.
Describe alternatives you've considered
I have looked at
setup.cfg
andpyproject.toml
. I see that the build tool is flit. I can make up a venv and runflit install --deps all
, but thenpytest
still fails withNo module named 'selenium'
. I can sort of get a sphinx build of the documentation running withsphinx-build -b html docs /tmp/test
but that doesn't pull in the code commentary correctly.The text was updated successfully, but these errors were encountered: