Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 3e79404

Browse files
authored
Merge pull request #54 from Zutatensuppe/feature/setup-testing
Feature/setup testing Former-commit-id: 34f4f53
2 parents d341258 + 3030ab3 commit 3e79404

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+11150
-47
lines changed

.github/workflows/godot-tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "godot gut test"
2+
on: push
3+
4+
jobs:
5+
execute-gut:
6+
name: Run GUT tests
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
12+
- name: Docker test
13+
uses: croconut/godot-tester@master
14+
with:
15+
version: "3.4"
16+
release_type: "rc2"
17+
test-dir: "res://tests"

.gut_editor_config.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"background_color": "ff262626",
3+
"config_file": "res://.gutconfig.json",
4+
"dirs": [
5+
"res://test"
6+
],
7+
"disable_colors": false,
8+
"double_strategy": "partial",
9+
"font_color": "ffcccccc",
10+
"font_name": "CourierPrime",
11+
"font_size": 16,
12+
"hide_orphans": false,
13+
"ignore_pause": false,
14+
"include_subdirs": true,
15+
"inner_class": null,
16+
"junit_xml_file": "",
17+
"junit_xml_timestamp": false,
18+
"log_level": 1,
19+
"opacity": 100,
20+
"post_run_script": "",
21+
"pre_run_script": "",
22+
"prefix": "test_",
23+
"selected": null,
24+
"should_exit": true,
25+
"should_exit_on_success": false,
26+
"should_maximize": false,
27+
"show_help": false,
28+
"suffix": ".gd",
29+
"tests": [
30+
31+
],
32+
"unit_test_name": null
33+
}

0 commit comments

Comments
 (0)