gitlab-runner test
This commit is contained in:
parent
d0a5b7ed54
commit
de43301785
2 changed files with 9 additions and 2 deletions
|
@ -4,9 +4,17 @@ stages:
|
||||||
- static
|
- static
|
||||||
- test
|
- test
|
||||||
|
|
||||||
static:
|
mypy:
|
||||||
stage: static
|
stage: static
|
||||||
before_script:
|
before_script:
|
||||||
- pip install mypy
|
- pip install mypy
|
||||||
script:
|
script:
|
||||||
- mypy techrec
|
- mypy techrec
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
before_script:
|
||||||
|
- pip install nose
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
script:
|
||||||
|
- nosetests
|
||||||
|
|
|
@ -5,6 +5,5 @@ fastapi==0.62.0
|
||||||
h11==0.11.0
|
h11==0.11.0
|
||||||
pydantic==1.7.3
|
pydantic==1.7.3
|
||||||
starlette==0.13.6
|
starlette==0.13.6
|
||||||
techrec @ file:///home/gordo/my/ror/techrec
|
|
||||||
typing-extensions==3.7.4.3
|
typing-extensions==3.7.4.3
|
||||||
uvicorn==0.13.1
|
uvicorn==0.13.1
|
||||||
|
|
Loading…
Reference in a new issue