renamed: .hgignore -> .gitignore new file: .gitlab-ci.yml new file: Makefile new file: miniuri/tests/__init__.py renamed: test_miniuri.py -> miniuri/tests/test_miniuri.py new file: requirements-test.txt modified: setup.py
14 lines
166 B
YAML
14 lines
166 B
YAML
stages:
|
|
- test
|
|
#- build
|
|
#- deploy
|
|
|
|
test:
|
|
stage: test
|
|
tags: ["build"]
|
|
script: make test
|
|
artifacts:
|
|
paths:
|
|
- env.vanilla
|
|
expire_in: 1 hour
|
|
|