temporarily revert tasty-rerun support for this release
revert c340d9506c
tasty-rerun is stuck in NEW in debian
This commit is contained in:
parent
e0224f01c1
commit
8fcf041159
5 changed files with 4 additions and 10 deletions
5
Makefile
5
Makefile
|
@ -54,9 +54,6 @@ install: build install-docs Build/InstallDesktopFile
|
|||
test: git-annex
|
||||
./git-annex test
|
||||
|
||||
retest: git-annex
|
||||
./git-annex test --rerun-update --rerun-filter failures
|
||||
|
||||
# hothasktags chokes on some template haskell etc, so ignore errors
|
||||
tags:
|
||||
find . | grep -v /.git/ | grep -v /tmp/ | grep -v /dist/ | grep -v /doc/ | egrep '\.hs$$' | xargs hothasktags > tags 2>/dev/null
|
||||
|
@ -83,7 +80,7 @@ clean:
|
|||
doc/.ikiwiki html dist tags Build/SysConfig.hs build-stamp \
|
||||
Setup Build/InstallDesktopFile Build/EvilSplicer \
|
||||
Build/Standalone Build/OSXMkLibs Build/LinuxMkLibs Build/DistributionUpdate \
|
||||
git-union-merge .tasty-rerun-log
|
||||
git-union-merge
|
||||
find . -name \*.o -exec rm {} \;
|
||||
find . -name \*.hi -exec rm {} \;
|
||||
|
||||
|
|
5
Test.hs
5
Test.hs
|
@ -13,7 +13,6 @@ import Test.Tasty
|
|||
import Test.Tasty.Runners
|
||||
import Test.Tasty.HUnit
|
||||
import Test.Tasty.QuickCheck
|
||||
import Test.Tasty.Ingredients.Rerun
|
||||
import Data.Monoid
|
||||
|
||||
import Options.Applicative hiding (command)
|
||||
|
@ -107,7 +106,7 @@ main ps = do
|
|||
|
||||
ingredients :: [Ingredient]
|
||||
ingredients =
|
||||
[ rerunningTests [consoleTestReporter]
|
||||
[ consoleTestReporter
|
||||
, listingTests
|
||||
]
|
||||
|
||||
|
@ -1270,7 +1269,7 @@ withTestEnv forcedirect = withResource prepare release
|
|||
where
|
||||
prepare = do
|
||||
env <- prepareTestEnv forcedirect
|
||||
case tryIngredients [consoleTestReporter] mempty (initTests env) of
|
||||
case tryIngredients ingredients mempty (initTests env) of
|
||||
Nothing -> error "No tests found!?"
|
||||
Just act -> unlessM act $
|
||||
error "init tests failed! cannot continue"
|
||||
|
|
1
debian/changelog
vendored
1
debian/changelog
vendored
|
@ -30,7 +30,6 @@ git-annex (5.20140127) unstable; urgency=medium
|
|||
* repair: Check git version at run time.
|
||||
* assistant: Run the periodic git gc in batch mode.
|
||||
* added annex.secure-erase-command config option.
|
||||
* test suite: Use tasty-rerun, and expose tasty command-line options.
|
||||
* Optimise non-bare http remotes; no longer does a 404 to the wrong
|
||||
url every time before trying the right url. Needs annex-bare to be
|
||||
set to false, which is done when initially probing the uuid of a
|
||||
|
|
1
debian/control
vendored
1
debian/control
vendored
|
@ -54,7 +54,6 @@ Build-Depends:
|
|||
libghc-tasty-dev (>= 0.7) [!mipsel !sparc],
|
||||
libghc-tasty-hunit-dev [!mipsel !sparc],
|
||||
libghc-tasty-quickcheck-dev [!mipsel !sparc],
|
||||
libghc-tasty-rerun-dev [!mipsel !sparc],
|
||||
libghc-optparse-applicative-dev,
|
||||
lsof [!kfreebsd-i386 !kfreebsd-amd64],
|
||||
ikiwiki,
|
||||
|
|
|
@ -114,7 +114,7 @@ Executable git-annex
|
|||
CPP-Options: -DWITH_CLIBS
|
||||
|
||||
if flag(TestSuite)
|
||||
Build-Depends: tasty (>= 0.7), tasty-hunit, tasty-quickcheck, tasty-rerun,
|
||||
Build-Depends: tasty (>= 0.7), tasty-hunit, tasty-quickcheck,
|
||||
optparse-applicative
|
||||
CPP-Options: -DWITH_TESTSUITE
|
||||
|
||||
|
|
Loading…
Reference in a new issue