gitlab-runner test

This commit is contained in:
boyska 2021-09-28 23:56:27 +02:00
parent d0a5b7ed54
commit de43301785
2 changed files with 9 additions and 2 deletions

View file

@ -4,9 +4,17 @@ stages:
- static
- test
static:
mypy:
stage: static
before_script:
- pip install mypy
script:
- mypy techrec
test:
stage: test
before_script:
- pip install nose
- pip install -r requirements.txt
script:
- nosetests

View file

@ -5,6 +5,5 @@ fastapi==0.62.0
h11==0.11.0
pydantic==1.7.3
starlette==0.13.6
techrec @ file:///home/gordo/my/ror/techrec
typing-extensions==3.7.4.3
uvicorn==0.13.1