Last active
December 15, 2015 21:19
-
-
Save smly/5324561 to your computer and use it in GitHub Desktop.
Run rod for test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| """ | |
| Run rod for test. | |
| """ | |
| import sys | |
| import os | |
| sys.path.append( | |
| os.path.join(os.path.dirname(os.path.abspath(__file__)), 'src')) | |
| import rod | |
| if __name__ == '__main__': | |
| rod.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment