summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-09-29 18:33:15 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-09-29 18:33:44 -0700
commita335010cbe43a661a36437e7653ce5620dd01350 (patch)
tree9d9fb1f37bea9c0541302924a57352efa640a4ed
parent9486d72bcdeaf39156137b24025911407d8a72f8 (diff)
downloadattobuild-a335010cbe43a661a36437e7653ce5620dd01350.tar.gz
attobuild-a335010cbe43a661a36437e7653ce5620dd01350.tar.bz2
attobuild-a335010cbe43a661a36437e7653ce5620dd01350.tar.xz
attobuild-a335010cbe43a661a36437e7653ce5620dd01350.zip
Clean up config.status during tests
This should probably be handled some better way.
-rw-r--r--attoconf/_version.py2
-rw-r--r--attoconf/tests/test_core.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/attoconf/_version.py b/attoconf/_version.py
index 75812fd..001d223 100644
--- a/attoconf/_version.py
+++ b/attoconf/_version.py
@@ -11,7 +11,7 @@ minor = 8
# Incremented if there is a bugfix release.
# Might not be contiguous.
-patch = 2
+patch = 3
# Reserved for distributors and forks.
# Contains arbitrary text, but no parentheses or newlines.
diff --git a/attoconf/tests/test_core.py b/attoconf/tests/test_core.py
index f394238..f60aab6 100644
--- a/attoconf/tests/test_core.py
+++ b/attoconf/tests/test_core.py
@@ -22,6 +22,7 @@ import unittest
from attoconf.core import Project, Build
from attoconf.types import uint, shell_word, shell_partial_word
+import os
from cStringIO import StringIO
import sys
@@ -127,6 +128,7 @@ General:
'QUX': 'a',
'--qux': 'b',
})
+ os.remove('config.status')
self.assertEqual(build.vars,
{
'FOO': 'B',