Skip to content
Snippets Groups Projects
Commit 8c2060b1 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Remove dependencies

 Removes chainconsumer and following requirements. These where causing
the CI to be very slow. Instead, rather than plotting, just list a
warning.
parent 33c87bf1
No related branches found
No related tags found
1 merge request!44Add a new test which runs through the examples
Pipeline #
......@@ -21,7 +21,6 @@ exitcode-jessie:
- pip install -r requirements.txt
- pip install coverage
- pip install coverage-badge
- pip install chainconsumer # Required by some of the example scripts
- python setup.py install
- coverage erase
- coverage run --include=tupak/* -a test/prior_tests.py
......
......@@ -3,14 +3,14 @@ import os
import numpy as np
import deepdish
import pandas as pd
import tupak
try:
from chainconsumer import ChainConsumer
except ImportError:
def ChainConsumer():
raise ImportError(
"You do not have the optional module chainconsumer installed")
logging.warning(
"You do not have the optional module chainconsumer installed"
" unable to generate a corner plot")
def result_file_name(outdir, label):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment