17
0

minimal .travis.yml (just verifies that script can be byte-compiled)

This commit is contained in:
Daniel Lenski 2020-03-22 23:36:59 -07:00
parent f381399b8f
commit d8929a47d1
3 changed files with 22 additions and 1 deletions

19
.travis.yml Normal file
View File

@ -0,0 +1,19 @@
notifications:
email:
false
sudo: false
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install -r requirements.txt
script:
- "python3 -m compileall -q gp-saml-gui.py" # byte-compile

View File

@ -1,3 +1,5 @@
[![Build Status](https://api.travis-ci.org/dlenski/gp-saml-gui.png)](https://travis-ci.org/dlenski/gp-saml-gui)
gp-saml-gui
===========

View File

@ -1,2 +1,2 @@
requests
gi
pgi