core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change
on this file since 639042e was
6708a6a,
checked in by Paul Kienzle <pkienzle@…>, 8 years ago
|
tinycc no longer runs in-place, so add tinycc build directory to the python path
|
-
Property mode set to
100755
|
File size:
684 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | import sys |
---|
4 | import os |
---|
5 | import glob |
---|
6 | import logging |
---|
7 | logging.basicConfig(level=logging.INFO) |
---|
8 | |
---|
9 | def main(): |
---|
10 | sasmodels = os.path.dirname(os.path.realpath(__file__)) |
---|
11 | root = os.path.dirname(sasmodels) |
---|
12 | sasview=glob.glob(os.path.join(root, 'sasview', 'build', 'lib*' )) |
---|
13 | sys.path.insert(0, os.path.join(root, 'bumps')) |
---|
14 | sys.path.insert(0, os.path.join(root, 'periodictable')) |
---|
15 | sys.path.insert(0, os.path.join(root, 'tinycc', 'build', 'lib')) |
---|
16 | if sasview: # glob returns a list |
---|
17 | sys.path.insert(0, sasview[0]) |
---|
18 | sys.path.insert(0, sasmodels) |
---|
19 | |
---|
20 | import sasmodels.compare |
---|
21 | sasmodels.compare.main() |
---|
22 | |
---|
23 | if __name__ == "__main__": |
---|
24 | main() |
---|
Note: See
TracBrowser
for help on using the repository browser.