File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 39
39
uses : actions/upload-artifact@v4
40
40
with :
41
41
name : Build-StandaloneOSX
42
- path : sample/**
42
+ path : sample/Builds/MacOS
43
43
test :
44
44
name : Run UI tests on AltTester 🧪
45
45
runs-on : macos-latest
52
52
with :
53
53
name : Build-StandaloneOSX
54
54
- name : Open application
55
- working-directory : Builds/MacOS
56
55
run : |
57
56
pwd
58
57
ls -la
68
67
run : pip install -r "sample/Tests/requirements.txt"
69
68
- name : Run UI tests
70
69
run : |
71
- pwd
72
- ls -la
73
70
export ALTSERVER_PORT=13000
74
71
export ALTSERVER_HOST="159.196.149.251"
75
72
pytest -s -v sample/Tests/test.py
Original file line number Diff line number Diff line change
1
+ import unittest
2
+ from alttester import *
3
+
4
+ class UnityTest (unittest .TestCase ):
5
+
6
+ # altdriver = None
7
+ #
8
+ # @classmethod
9
+ # def setUpClass(cls):
10
+ # cls.altdriver = AltDriver()
11
+ #
12
+ # @classmethod
13
+ # def tearDownClass(cls):
14
+ # cls.altdriver.stop()
15
+
16
+ def test (self ):
17
+ assert True
You can’t perform that action at this time.
0 commit comments