Skip to content

Commit a69942c

Browse files
committed
Add travis config
1 parent 773b30f commit a69942c

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: python
2+
python:
3+
- "3.7"
4+
5+
install:
6+
- "pip install -r requirements.txt"
7+
- "pip install pylint mypy sqlalchemy-stubs"
8+
9+
script:
10+
- "pylint gallery"
11+
- "mypy gallery"

mypy-run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
pip install mypy typeshed sqlalchemy-stubs
3+
pip install mypy sqlalchemy-stubs
44

55
DIR=$(dirname "$(readlink -f "$0")")
66

0 commit comments

Comments
 (0)