multi-user/.gitlab/ci/test.gitlab-ci.yml

13 lines
309 B
YAML
Raw Normal View History

2020-04-07 18:19:17 +02:00
test:
2020-04-07 19:32:40 +00:00
image: python:latest
2020-04-07 18:19:17 +02:00
script:
2020-04-07 17:12:27 +00:00
- git submodule init
- git submodule update
2020-04-08 09:00:47 +00:00
- apt update
# install blender to get all required dependencies
# TODO: indtall only dependencies
- apt install -f -y blender
2020-04-07 19:32:40 +00:00
- pip install blender-addon-tester
2020-04-08 10:20:13 +00:00
- python scripts/test_addon.py
2020-04-07 18:19:17 +02:00