13 lines
202 B
YAML
13 lines
202 B
YAML
language: python
|
|
python:
|
|
- 3.6
|
|
- 3.7
|
|
dist: bionic
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libsqlcipher-dev
|
|
install:
|
|
- python setup.py build_ext -i
|
|
script:
|
|
- PYTHONPATH=".:$PYTHONPATH" python test/
|