mirror of
https://github.com/fastogt/pyfastogt
synced 2025-02-12 13:01:55 +00:00
31 lines
390 B
YAML
31 lines
390 B
YAML
|
image: python:3.6
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
- test
|
||
|
|
||
|
before_script:
|
||
|
- python3 -V # Print out python version for debugging
|
||
|
- pip3 install virtualenv
|
||
|
- virtualenv venv
|
||
|
- source venv/bin/activate
|
||
|
- python3 setup.py install
|
||
|
|
||
|
build:
|
||
|
stage: build
|
||
|
|
||
|
script:
|
||
|
- echo done
|
||
|
|
||
|
tags:
|
||
|
- fastogt
|
||
|
|
||
|
test:
|
||
|
stage: test
|
||
|
|
||
|
script:
|
||
|
- python3 -m unittest tests/*.py
|
||
|
|
||
|
tags:
|
||
|
- fastogt
|