diff options
author | John Peter Yamauchi <jpyamauchi@gmail.com> | 2020-08-06 12:02:01 -0500 |
---|---|---|
committer | John Peter Yamauchi <jpyamauchi@gmail.com> | 2020-08-06 12:02:01 -0500 |
commit | d40956bd3350e6ae2a6e5758eb169b7889299ce6 (patch) | |
tree | 39cedd14aaeac25012f78b6edd9ba645609b6a4c /bin | |
parent | 9d972bfa792c08d4f3ce6a6b7cfd9877f801b5e3 (diff) | |
download | screenplain-d40956bd3350e6ae2a6e5758eb169b7889299ce6.tar.gz |
Add Windows support
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/screenplain | 6 | ||||
-rw-r--r-- | bin/test.bat | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/bin/screenplain b/bin/screenplain deleted file mode 100755 index e28cb73..0000000 --- a/bin/screenplain +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env python -import sys - -if __name__ == '__main__': - from screenplain.main import main - main(sys.argv[1:]) diff --git a/bin/test.bat b/bin/test.bat new file mode 100644 index 0000000..9c75fa3 --- /dev/null +++ b/bin/test.bat @@ -0,0 +1,2 @@ +nosetests --nocapture --with-doctest --doctest-tests +pycodestyle --ignore=E402,W504 screenplain tests |