aboutsummaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorYuchen Pei <hi@ypei.me>2022-05-19 22:23:10 +1000
committerYuchen Pei <hi@ypei.me>2022-05-19 22:23:10 +1000
commit3db93bc6f7b46bc322694e6658b8f559433a03c6 (patch)
tree1273a17e11e0d9888ae57676906c68f8bb77e287 /test.py
parent09c05e86a1096b08eb7483b970207d47d0388665 (diff)
Replacing the files with a haskell rewrite.
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/test.py b/test.py
deleted file mode 100755
index a59f33b..0000000
--- a/test.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-import os
-
-import nose.core
-
-if 'NOSE_TESTMATCH' not in os.environ:
- os.environ['NOSE_TESTMATCH'] = '(?:^|[./])test(_|$)'
-
-if 'NOSE_WITH_DOCTEST' not in os.environ:
- os.environ['NOSE_WITH_DOCTEST'] = '1'
-
-if __name__ == '__main__':
- nose.core.run()