Skip to content

Commit

Permalink
Build tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleitnick committed Dec 10, 2024
1 parent 3166065 commit 1fa9c2b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion test.project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"$className": "DataModel",
"ReplicatedStorage": {
"$className": "ReplicatedStorage",
"Test": {
"Modules": {
"$path": "test"
}
},
Expand Down

0 comments on commit 1fa9c2b

Please sign in to comment.