mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
3307231b65
Full codepoint tests will only be run if the RUN_FULL_CODEPOINT_TESTS environment variable is set. This is set in the CI enviroment. The tests take too long to run locally as part of regular test driven development.
11 lines
261 B
YAML
11 lines
261 B
YAML
env:
|
|
- RUN_FULL_CODEPOINT_TESTS=true
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- docker pull barichello/godot-ci
|
|
|
|
script:
|
|
- docker run -v $(pwd):/src -e RUN_FULL_CODEPOINT_TESTS="${RUN_FULL_CODEPOINT_TESTS}" barichello/godot-ci godot --path /src -s addons/gut/gut_cmdln.gd
|