Skip to content

Commit

Permalink
Update project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Sep 26, 2016
1 parent e1d1bf0 commit 7a6c1b7
Show file tree
Hide file tree
Showing 13 changed files with 185 additions and 135 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ Icon*
.coverage
.coverage.*
/htmlcov
/xmlreport
/pyunit.xml
*.tmp

# Build and release directories
*.spec
/build
/dist

Expand Down
3 changes: 2 additions & 1 deletion .pep8rc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[pep8]

# E402 module level import not at top of file (checked by PyLint)
# E501: line too long (checked by PyLint)
# E711: comparison to None (used to improve test style)
# E712: comparison to True (used to improve test style)
ignore = E501,E711,E712
ignore = E402,E501,E711,E712
6 changes: 6 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ max-line-length=80

ignore-long-lines=^.*((https?:)|(pragma:)|(TODO:)).*$

[SIMILARITIES]

min-similarity-lines=4

ignore-imports=yes

[REPORTS]

reports=no
Expand Down
23 changes: 9 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,27 @@
sudo: false

language: python
python:
- 3.5
- 3.5

cache:
pip: true
directories:
- env
- env

env:
global:
- RANDOM_SEED=12345
- RANDOM_SEED=0

install:
- pip install coveralls scrutinizer-ocular

before_script:
- make env
- make depends
- make install

script:
- make check
- make test
- make check
- make test

after_success:
- coveralls
- ocular
- pip install coveralls scrutinizer-ocular
- coveralls
- ocular

notifications:
email:
Expand Down

0 comments on commit 7a6c1b7

Please sign in to comment.