test: Fix --list-tests

Seems list order matters, I don't know why, but have reported it on #tasty
This commit is contained in:
Joey Hess 2015-03-31 14:47:27 -04:00
parent 7188d747db
commit f842888de3
3 changed files with 6 additions and 2 deletions

View file

@ -125,8 +125,8 @@ main ps = do
ingredients :: [Ingredient]
ingredients =
[ rerunningTests [consoleTestReporter]
, listingTests
[ listingTests
, rerunningTests [consoleTestReporter]
]
properties :: TestTree

1
debian/changelog vendored
View file

@ -12,6 +12,7 @@ git-annex (5.20150328) UNRELEASED; urgency=medium
done when annex.genmetadata was set.
* Relax debian package dependencies to git >= 1:1.7.7.6 rather
than needing >= 1:2.0.
* test: Fix --list-tests
-- Joey Hess <id@joeyh.name> Fri, 27 Mar 2015 16:04:43 -0400

View file

@ -23,3 +23,6 @@ Tests
[snip all the passing tests]
All 140 tests passed (305.69s)
"""]]
> [[fixed|done]] although I don't understand why tasty needs the
> `listingTests` ingredient to come first for it to work. --[[Joey]]