summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2020-10-04 01:22:01 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2020-10-04 01:22:01 (GMT)
commit0ca47bd580b3bc93bbff4bbaaa7f0b3dad160558 (patch)
tree2f8cf44c6e87098ad00766866e13c5c29fc2b227 /test
parent06c0204e85ecbb124e72b27f4d23483ab3bd7c35 (diff)
downloadSCons-0ca47bd580b3bc93bbff4bbaaa7f0b3dad160558.zip
SCons-0ca47bd580b3bc93bbff4bbaaa7f0b3dad160558.tar.gz
SCons-0ca47bd580b3bc93bbff4bbaaa7f0b3dad160558.tar.bz2
Disable flake8 F401 in test
Diffstat (limited to 'test')
-rw-r--r--test/option/debug-memory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option/debug-memory.py b/test/option/debug-memory.py
index 9eefe65..31ae346 100644
--- a/test/option/debug-memory.py
+++ b/test/option/debug-memory.py
@@ -35,7 +35,7 @@ test = TestSCons.TestSCons()
if not test.IS_WINDOWS:
try:
- import resource
+ import resource # noqa: F401
except ImportError:
x = "Python version has no 'resource' skipping tests.\n"
test.skip_test(x)