Skip to content
Snippets Groups Projects
Verified Commit 128c0711 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[CI] Do not require hashes when testing; install dev dependencies

parent 7a482203
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ test: ...@@ -19,7 +19,7 @@ test:
before_script: before_script:
- adduser --disabled-password --gecos "Test User" testuser - adduser --disabled-password --gecos "Test User" testuser
script: script:
- sudo -u testuser sh -c 'poetry export -f requirements.txt | eatmydata pip install -r /dev/stdin' - sudo -u testuser sh -c 'poetry export --without-hashes --dev -f requirements.txt | eatmydata pip install -r /dev/stdin'
- sudo -u testuser eatmydata poetry run tox - sudo -u testuser eatmydata poetry run tox
build_dist: build_dist:
...@@ -106,7 +106,7 @@ pages: ...@@ -106,7 +106,7 @@ pages:
image: image:
name: registry.edugit.org/teckids/docker-images/python-pimped name: registry.edugit.org/teckids/docker-images/python-pimped
script: script:
- poetry export -f requirements.txt | eatmydata pip install -r /dev/stdin - poetry export --without-hashes --dev -f requirements.txt | eatmydata pip install -r /dev/stdin
- poetry run make -C docs html BUILDDIR=../public/docs - poetry run make -C docs html BUILDDIR=../public/docs
artifacts: artifacts:
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment