Skip to content
Snippets Groups Projects
Unverified Commit 86e8fd2c authored by Andrej Shadura's avatar Andrej Shadura
Browse files

Move tests to heavyweight runners


On lightweight runners, tests would sometimes run out of disk space
or memory or both.

Signed-off-by: default avatarAndrej Shadura <andrew.shadura@collabora.co.uk>
parent d194613d
No related branches found
No related tags found
1 merge request!33Drop HTTP proxy support, upgrade Websockets to 10.0
Pipeline #506978 passed with warnings
......@@ -3,30 +3,27 @@ stages:
- test
- docker
py310:
image: python:3.10
.test:
tags:
- lightweight
- heavyweight
script:
- pip install .[test]
- python setup.py build sdist bdist
- pytest --junit-xml=test-results.xml
- pytest --junit-xml=test-results.xml -v
artifacts:
reports:
junit: test-results.xml
py310:
image: python:3.10
extends:
- .test
py311:
allow_failure: true
image: python:3.11
tags:
- lightweight
script:
- pip install .[test]
- python setup.py build sdist bdist
- pytest --junit-xml=test-results.xml
artifacts:
reports:
junit: test-results.xml
extends:
- .test
allow_failure: true
codestyle:
allow_failure: true
......
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