15 lines
335 B
YAML
15 lines
335 B
YAML
test:
|
|
stage: test
|
|
image: python:latest
|
|
script:
|
|
- git submodule init
|
|
- git submodule update
|
|
- apt update
|
|
# install blender to get all required dependencies
|
|
# TODO: indtall only dependencies
|
|
- apt install -f -y blender
|
|
- python -m pip install blender-addon-tester
|
|
- python scripts/test_addon.py
|
|
|
|
|