Skip to content

Commit

Permalink
travis check
Browse files Browse the repository at this point in the history
  • Loading branch information
simonvh committed Aug 23, 2016
1 parent b86eb87 commit fbc74fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
12 changes: 4 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ language: python
python:
- "2.7"

#cache:
# apt: true
# directories:
# - $HOME/miniconda
cache:
apt: true
directories:
- $HOME/miniconda

before_install:
# install miniconda for Python dependencies
Expand All @@ -27,16 +27,12 @@ install:
- wget https://cran.r-project.org/src/contrib/RobustRankAggreg_1.1.tar.gz
- R CMD INSTALL RobustRankAggreg_1.1.tar.gz
- python setup.py develop
# - pip install --upgrade .
- python setup.py build
# - pip install nose coverage
# - pip install coveralls
# # command to run tests, e.g. python setup.py test
script:
- python test/test_cluster.py
- $HOME/miniconda/bin/python test/test_cluster.py
- python run_tests.py
- $HOME/miniconda/bin/python test/test_cluster.py


#after_sucess:
Expand Down
1 change: 0 additions & 1 deletion gimmemotifs/comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ def _load_scores(self):
for combine in ["mean"]:
self.scoredist[metric]["%s_%s" % (match, combine)] = {}
score_file = os.path.join(self.config.get_score_dir(), "%s_%s_%s_score_dist.txt" % (match, metric, combine))
logging.warn(score_file)
if os.path.exists(score_file):
for line in open(score_file):
l1, l2, m, sd = line.strip().split("\t")[:4]
Expand Down

0 comments on commit fbc74fa

Please sign in to comment.