Skip to content

Commit

Permalink
Merge c2e86ad into a756b44
Browse files Browse the repository at this point in the history
  • Loading branch information
courtem committed Apr 30, 2019
2 parents a756b44 + c2e86ad commit ddc8fc2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
18 changes: 12 additions & 6 deletions .travis.yml
Expand Up @@ -2,15 +2,16 @@ language: python
python:
- 3.6
install:
- sudo apt update
- pip3 install --upgrade pip
- pip install -r requirements.txt
- pip install -r dev-requirements.txt
- pip install flask
- pip install pyjwt
jobs:
include:
- stage: tests
install:
- sudo apt update
- pip3 install --upgrade pip
- pip install -r requirements.txt
- pip install -r dev-requirements.txt
- pip install flask
- pip install pyjwt
script:
- export FLASK_APP=tests/server/app.py
- flask run &
Expand All @@ -19,5 +20,10 @@ jobs:
after_success:
coveralls
- stage: pylint
install:
- sudo apt update
- pip3 install --upgrade pip
- pip install -r requirements.txt
- pip install pylint
script:
- pylint ./screamshot
1 change: 0 additions & 1 deletion dev-requirements.txt
@@ -1,4 +1,3 @@
requests==2.21.0
pylint==2.3.1
mypy==0.701
Pillow==6.0.0
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
@@ -1 +1,2 @@
pyppeteer==0.0.25
requests==2.21.0
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -41,6 +41,7 @@

install_requires=[
'pyppeteer',
'requests',
],

entry_points={
Expand Down

0 comments on commit ddc8fc2

Please sign in to comment.