diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d820287 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: python + +python: + - 2.6 + - 2.7 + - 3.2 + - 3.3 + - 3.4 + - pypy + +before_script: + - pip install -r dev-requirements.txt + +script: py.test --cov rfc3986 + +notifications: + on_success: change + on_failure: always diff --git a/dev-requirements.txt b/dev-requirements.txt index e079f8a..9955dec 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1 +1,2 @@ pytest +pytest-cov