From 00a4249b74c1816bc468b480ae1ff6ff27351ff8 Mon Sep 17 00:00:00 2001 From: William Richard Date: Tue, 5 Dec 2017 15:47:04 -0500 Subject: [PATCH] Make test_amis not executable, so nose runs it In trying to debug changes to the ami mock introduced in 1.1.25, I noticed that the ami tests were not running. Turns out that nose does not run test files that are executable. http://nose.readthedocs.io/en/latest/finding_tests.html The ami test file was the only test file I could find that had the executable bit set. --- tests/test_ec2/test_amis.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 tests/test_ec2/test_amis.py diff --git a/tests/test_ec2/test_amis.py b/tests/test_ec2/test_amis.py old mode 100755 new mode 100644