Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.56 KB

README.md

File metadata and controls

53 lines (40 loc) · 1.56 KB

Publish Python 🐍 distributions 📦 to PyPI Python package Code style: black License: AGPL v3

everviz: web based visualization for everest

What is everviz

everviz is a visualization plugin for everest based on dash and webviz-config.

Download project

The code is hosted on GitHub: https://github.com/equinor/everviz

The latest version is available on pypi.

# Install
pip install everviz

Run tests

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