Skip to content

Commit 0096c00

Browse files
committed
[xctest_checker] Remove installation script
This Python module is only ever used by the XCTest functional tests, it doesn't need a Python package installation script. I initially added this installation script because I mistakenly thought I needed it to run xctest_checker's tests. In fact they can be run like so: ``` $ python -m unittest discover -s Tests/Functional/xctest_checker ```
1 parent 5a564c5 commit 0096c00

File tree

3 files changed

+2
-54
lines changed

3 files changed

+2
-54
lines changed

Tests/Functional/xctest_checker/setup.py

Lines changed: 0 additions & 43 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
import xctest_checker
3+
import xctest_checker.main
44

55
if __name__ == '__main__':
6-
xctest_checker.main()
6+
xctest_checker.main.main()
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +0,0 @@
1-
from __future__ import absolute_import
2-
from .main import main
3-
4-
__author__ = 'Brian Gesiak'
5-
__email__ = '[email protected]'
6-
__versioninfo__ = (0, 1, 0)
7-
__version__ = '.'.join(str(v) for v in __versioninfo__)
8-
9-
__all__ = []

0 commit comments

Comments
 (0)