Skip to content

Commit

Permalink
Merge branch 'master' into travis_pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
pesser authored Aug 8, 2019
2 parents 041b949 + 596893e commit 14b5f6b
Show file tree
Hide file tree
Showing 43 changed files with 2,086 additions and 741 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ log/
# Documentation
docs/build/*
docs/_*
docs/source/source_files/*

.nfs*

Expand Down
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ jobs:
- pip install black
script:
- black --check .
- stage: documentation
name: "documentation test"
install:
- pip install sphinx sphinx_rtd_theme sphinxcontrib-apidoc pyyaml numpy
script:
- sphinx-build -W -v -b html docs/ docs/_build/
- stage: general_tests
name: "General Tests"
install:
Expand All @@ -38,6 +44,7 @@ jobs:
- pip install tensorboardX
- python setup.py install
script:
- python -c "import skimage" # fix failing test due to static tls loading
- pytest --ignore=examples # use pytest instead of python -m pytest
- stage: tf_example_tests
name: "Tensorflow examples test"
Expand Down
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

The following is a set of guidelines for contributing to edflow. These are mostly guidelines, not rules. Use your best judgment on when to apply them and always be nice to each other :heart:.

> ### code-block
> In your docstring write **``.. code-block:: <language>``**, when showing examples.
>
> This comment is right here, because everyone seems to do it wrong.
#### Table Of Contents

[Code of Conduct](#code-of-conduct)
Expand Down
Loading

0 comments on commit 14b5f6b

Please sign in to comment.