diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fd7d09dc..68525303 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -67,6 +67,9 @@ jobs: - name: Install Python dependencies run: pip install -r requirements.txt + - name: Run test builder + run: python build_tests.py + - name: Run tests env: UID: 6900069600 diff --git a/run_tests.py b/run_tests.py index a41cb881..b43123e6 100644 --- a/run_tests.py +++ b/run_tests.py @@ -39,7 +39,7 @@ def run_tests(): res_json = res.json() state = res_json["state"] if state != last_state: - print(f"State Changed: {state}") + print(f"State changed: {state}") last_state = state if state == "CANCELLED": exit(1) diff --git a/test.project.json b/test.project.json index 35598fda..d30d97ae 100644 --- a/test.project.json +++ b/test.project.json @@ -4,7 +4,7 @@ "$className": "DataModel", "ReplicatedStorage": { "$className": "ReplicatedStorage", - "Test": { + "Modules": { "$path": "test" } },