Skip to content

Commit

Permalink
Fix build error regarding 'tasty' bounds (#1505)
Browse files Browse the repository at this point in the history
[Build error](https://github.com/swarm-game/swarm/actions/runs/6133922036/job/16646223425?pr=1503) was:
```
Test/Tasty/QuickCheck.hs:30:43: error:
    Module ‘Test.Tasty.Runners’ does not export ‘emptyProgress’
   |
30 | import Test.Tasty.Runners (formatMessage, emptyProgress)
   |                                           ^^^^^^^^^^^^^
Error: cabal-3.10.1.0: Failed to build tasty-quickcheck-0.10.3. See the build log above for details.
```
  • Loading branch information
kostmo authored Sep 10, 2023
1 parent 096251d commit f9a1c31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swarm.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ test-suite swarm-unit
TestScoring
TestUtil

build-depends: tasty >= 0.10 && < 1.5,
build-depends: tasty >= 0.10 && < 1.6,
tasty-hunit >= 0.10 && < 0.11,
tasty-quickcheck >= 0.10 && < 0.11,
QuickCheck >= 2.14 && < 2.15,
Expand Down Expand Up @@ -357,7 +357,7 @@ test-suite swarm-integration
main-is: Main.hs
type: exitcode-stdio-1.0

build-depends: tasty >= 0.10 && < 1.5,
build-depends: tasty >= 0.10 && < 1.6,
tasty-hunit >= 0.10 && < 0.11,
tasty-expected-failure >= 0.12 && < 0.13,
-- Imports shared with the library don't need bounds
Expand Down

0 comments on commit f9a1c31

Please sign in to comment.