From e9166b14fd4da5c68774d959ef390da6b6e4491b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 12 Sep 2010 13:13:43 -0400 Subject: [PATCH] Cleaned up fabfile. --- fabfile.py | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/fabfile.py b/fabfile.py index d29811e..887bc25 100644 --- a/fabfile.py +++ b/fabfile.py @@ -5,23 +5,3 @@ def scrub(): """ Death to the bytecode! """ local("rm -fr dist build") local("find . -name \"*.pyc\" -exec rm '{}' ';'") - -def test(): - """ Test parsing! """ - local("rm output/*") - local("./strata.py --nsanity_files 'strata/tests/samples/nsanity' -d") - -def build(): - """ Build application""" - pass - -def init(): - """ Initialize Environment """ - # TODO: Possibly add Virtual Environment? - local("sudo pip install -r REQUIREMENTS") - -if __name__ == '__main__': - # TODO: Remove (for testing purposes) - # TODO: [Possibly] add doctests - test() - \ No newline at end of file