Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@ _build
__pycache__
venv3
.idea
.vscode/settings.json
.pytest_cache/
.coverage
Pipfile
Pipfile.lock
23 changes: 21 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,28 @@ language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"

# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- python: 3.7
dist: xenial
sudo: true

# command to install dependencies
install:
- "pip install . --use-mirrors"
- pip install -qq pytest
- pip install -qq "pytest-cov<2.6"
- pip install -qq python-coveralls
- pip install --upgrade pip

# command to run tests
script: python -m unittest discover
script:
- py.test --cov=meta

after_success:
- coveralls
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------+
|Travis CI Dev | .. image:: https://travis-ci.org/viralogic/Meta.svg?branch=develop:target: https://travis-ci.org/viralogic/Meta |
+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------+
|Coveralls Dev | .. image:: https://coveralls.io/repos/github/viralogic/Meta/badge.svg?branch=developtarget: https://coveralls.io/github/viralogic/Meta |
+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------+

Meta
====

Expand Down