Commit e95ca037 authored by Jason R Laura's avatar Jason R Laura
Browse files

Initial commit

parent 5feb275b
Loading
Loading
Loading
Loading

.coveragerc

0 → 100644
+12 −0
Original line number Diff line number Diff line
[run]
source = autocnet
[report]
omit =
    plio/ControlNetFileV0002_pb2.py
    */tests/*
exclude_lines =
    pragma: no cover
    def __repr__
    raise AssertionError
    raise NotImplementedError
    if __name__ == __main__:

.travis.yml

0 → 100644
+51 −0
Original line number Diff line number Diff line
language: python
sudo: false

branches:
only:
  - master

python:
  - "3.5"

before_install:

install:
  # We do this conditionally because it saves us some downloading if the
  # version is the same.
  - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
      wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
    else
      wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
    fi
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a

  - conda env create
  - source activate plio

  # Development installation
  - conda install nose coverage
  - pip install coveralls

script:
  - nosetests --with-coverage --cover-package=autocnet

after_success:
  - coveralls

notifications:
  webhooks:
    on_success: always
    on_failure: always
    on_start: never
  email:
      recipients:
        - jlaura@usgs.gov
      on_success: always
      on_failure: always
 No newline at end of file

data/data.db

0 → 100644
+53 KiB

File added.

No diff preview for this file type.

environment.yml

0 → 100644
+12 −0
Original line number Diff line number Diff line
name: plio
channels:
  - conda-forge
dependencies:
  - pip:
    - pvl
    - protobuf=3.0.0b2
  - gdal>2.x
  - h5py
  - pandas
  - sqlalchemy
  - pyyaml
 No newline at end of file
+718 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading