split root-tests to a smaller tests

This commit is contained in:
Kay0u 2021-06-08 16:59:28 +02:00
parent 024ea14b27
commit cfa1e5dff8
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D

View file

@ -50,10 +50,29 @@ full-tests:
reports:
junit: report.xml
root-tests:
test-i18n-keys:
extends: .test-stage
script:
- python3 -m pytest tests
- python3 -m pytest tests tests/test_i18n_keys.py
only:
changes:
- locales/*
test-i18n-keys:
extends: .test-stage
script:
- python3 -m pytest tests tests/test_translation_format_consistency.py
only:
changes:
- locales/*
test-actionmap:
extends: .test-stage
script:
- python3 -m pytest tests tests/test_actionmap.py
only:
changes:
- data/actionsmap/*.yml
test-helpers:
extends: .test-stage