Added CI support.

This commit is contained in:
Veronica K. B. Olsen
2019-05-16 13:53:58 +02:00
parent e4f277d47e
commit be5d46fb98
3 changed files with 23 additions and 0 deletions
+3
View File
@@ -10,3 +10,6 @@ sample/**/*.bak
tests/temp
.pytest_cache
pytestdebug.log
# Coverage
.coverage
+16
View File
@@ -0,0 +1,16 @@
dist: xenial # required for Python >= 3.7
language: python
python:
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
- "3.7"
- "3.7-dev" # 3.7 development branch
- "3.8-dev" # 3.8 development branch
# command to install dependencies
install:
- pip install -r dependencies.txt
# command to run tests
script:
- pytest
+4
View File
@@ -0,0 +1,4 @@
pyqt5
appdirs
lxml
enchant