Skip to content
Snippets Groups Projects

Fix various warnings from tests

Merged Andreas Ellewsen requested to merge tests/speedup into master
1 file
+ 8
8
Compare changes
  • Side-by-side
  • Inline
+ 8
8
image: python:3.9-buster
image: python:3.10-buster
variables:
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
@@ -15,15 +15,16 @@ stages:
@@ -15,15 +15,16 @@ stages:
update:
update:
before_script:
before_script:
- python -V
- python -V
image: python:3.9-buster
image: python:3.10-buster
stage: venv update
stage: venv update
script:
script:
 
- make clean
- make install
- make install
backend lint:
backend lint:
before_script:
before_script:
- python -V
- python -V
image: python:3.9-buster
image: python:3.10-buster
stage: tests and linting
stage: tests and linting
script:
script:
- make lint
- make lint
@@ -31,7 +32,7 @@ backend lint:
@@ -31,7 +32,7 @@ backend lint:
backend test:
backend test:
before_script:
before_script:
- python -V
- python -V
image: python:3.9-buster
image: python:3.10-buster
stage: tests and linting
stage: tests and linting
script:
script:
- make test
- make test
@@ -42,7 +43,7 @@ backend test:
@@ -42,7 +43,7 @@ backend test:
backend build:
backend build:
before_script:
before_script:
- python -V
- python -V
image: python:3.9-buster
image: python:3.10-buster
stage: tests and linting
stage: tests and linting
script:
script:
- pip install poetry
- pip install poetry
@@ -56,8 +57,7 @@ frontend test:
@@ -56,8 +57,7 @@ frontend test:
- npm install -g npm@latest
- npm install -g npm@latest
- npm ci
- npm ci
- npm run coverage:ci
- npm run coverage:ci
coverage:
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
'/All files[^|]*\|[^|]*\s+([\d\.]+)/'
frontend lint:
frontend lint:
image: node:16-alpine
image: node:16-alpine
@@ -75,5 +75,5 @@ frontend build:
@@ -75,5 +75,5 @@ frontend build:
- cd frontend
- cd frontend
- npm install -g npm@latest
- npm install -g npm@latest
- NODE_ENV=production
- NODE_ENV=production
- npm ci
- npm ci
- npm run build:no-env
- npm run build:no-env
Loading