| Revision 330,
342 bytes
checked in by xi, 4 years ago
(diff) |
|
Share data files between Py2 and Py3 test suites.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | if __name__ == '__main__': |
|---|
| 3 | import sys, os, distutils.util |
|---|
| 4 | build_lib = 'build/lib' |
|---|
| 5 | build_lib_ext = os.path.join('build', 'lib.%s-%s' % (distutils.util.get_platform(), sys.version[0:3])) |
|---|
| 6 | sys.path.insert(0, build_lib) |
|---|
| 7 | sys.path.insert(0, build_lib_ext) |
|---|
| 8 | import test_yaml, test_appliance |
|---|
| 9 | test_appliance.run(test_yaml) |
|---|
| 10 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.