Skip to content

Commit c0b5282

Browse files
committed
Fix the deps error.
1 parent 6ab9d63 commit c0b5282

21 files changed

+38
-37
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
2+
.idea
23
# Ignore all bazel-* symlinks.
34
/bazel-*

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ ios_test_runner.par binary:
2020
```
2121
$ git clone https://github.com/google/xctestrunner.git
2222
$ cd xctestrunner
23-
$ bazel build :ios_test_runner.par
24-
$ chmod +x bazel-bin/ios_test_runner.par
23+
$ bazel build xctestrunner:ios_test_runner.par
24+
$ ls bazel-bin/ios_test_runner.par
2525
```
26-
- Runs the ios_test_runner.par binary.
26+
- Run the ios_test_runner.par binary.
2727

2828
In overview, there are two sub-commands in the runner binary.
2929
- test: Run test directly on connecting iOS real device or existing iOS
File renamed without changes.
File renamed without changes.

Shared/bundle_util.py renamed to xctestrunner/Shared/bundle_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
import subprocess
2020
import tempfile
2121

22-
from XCTestRunner.Shared import ios_errors
23-
from XCTestRunner.Shared import plist_util
22+
from xctestrunner.Shared import ios_errors
23+
from xctestrunner.Shared import plist_util
2424

2525

2626
def ExtractIPA(ipa_path, working_dir, bundle_extension):
File renamed without changes.
File renamed without changes.

Shared/plist_util.py renamed to xctestrunner/Shared/plist_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
except ImportError:
2626
biplist = None
2727

28-
from XCTestRunner.Shared import ios_errors
28+
from xctestrunner.Shared import ios_errors
2929

3030

3131
PLIST_BUDDY = '/usr/libexec/PlistBuddy'

Shared/provisioning_profile.py renamed to xctestrunner/Shared/provisioning_profile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import subprocess
2222
import tempfile
2323

24-
from XCTestRunner.Shared import ios_errors
25-
from XCTestRunner.Shared import plist_util
24+
from xctestrunner.Shared import ios_errors
25+
from xctestrunner.Shared import plist_util
2626

2727

2828
class ProvisiongProfile(object):
File renamed without changes.

0 commit comments

Comments
 (0)