Skip to content

Commit

Permalink
add dot files
Browse files Browse the repository at this point in the history
  • Loading branch information
trichter committed Aug 23, 2017
1 parent 70ab2e1 commit eeba886
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .coveragerc
@@ -0,0 +1,4 @@
[run]
concurrency = multiprocessing
parallel = True
include = */yam/*
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
*.pyc
*~
*.so
build
dist
yam.egg-info
43 changes: 43 additions & 0 deletions .travis.yml
@@ -0,0 +1,43 @@
language: c
sudo: false
matrix:
include:
- os: linux
env: PYTHON_VERSION=3.5
- os: linux
env: PYTHON_VERSION=3.6
- os: osx
env: PYTHON_VERSION=3.6
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
export OS="MacOSX";
else
export OS="Linux";
fi
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-${OS}-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes
- conda update -q conda
- conda config --add channels conda-forge
- conda info -a
- conda create -q -n testenv
python=$PYTHON_VERSION
obspy coverage tqdm h5py
- source activate testenv
- conda uninstall obspy
- pip install https://github.com/obspy/obspy/archive/master.zip
- pip install obspyh5
- conda list
install:
- pip install --no-deps .
script:
- mkdir empty; cd empty
- cp ../.coveragerc ./
- coverage run -m yam.tests
after_success:
- coverage combine
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false

0 comments on commit eeba886

Please sign in to comment.