14 lines
231 B
YAML
14 lines
231 B
YAML
sudo: required
|
|
language: python
|
|
dist: xenial
|
|
python: 3.7
|
|
|
|
jobs:
|
|
include:
|
|
- stage: "Tests"
|
|
name: "Unit Tests"
|
|
install:
|
|
- pip install -e .
|
|
- mkdir database
|
|
script:
|
|
- python -m unittest
|