everviz is a visualization plugin for everest based on dash and webviz-config.
The code is hosted on GitHub: https://github.com/equinor/everviz
The latest version is available on pypi.
# Install
pip install everviz
tox is used as the test facilitator, to run the full test suite:
# Test
pip install tox
tox
or to run it for a particular Python version (in this case Python 3.7):
# Test
pip install tox
tox -e py37
pytest is used as the test runner, so for quicker iteration it is possible to run:
# Test
pytest
# or to run the tests headless:
pytest --headless
this requires that the test dependencies from tox.ini
are installed.
The tests requires WebDrivers (default: Chrome), more information can be found here