Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions graphula.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.37.0.
-- This file has been generated from package.yaml by hpack version 0.38.1.
--
-- see: https://github.com/sol/hpack

Expand Down Expand Up @@ -78,13 +78,14 @@ test-suite readme
hs-source-dirs:
test
ghc-options: -Weverything -Wno-all-missed-specialisations -Wno-implicit-prelude -Wno-missing-import-lists -Wno-safe -Wno-unsafe -pgmL markdown-unlit
build-tool-depends:
markdown-unlit:markdown-unlit
build-depends:
QuickCheck
, base <5
, generic-arbitrary
, graphula
, hspec
, markdown-unlit
, monad-logger
, persistent
, persistent-sqlite
Expand Down
3 changes: 2 additions & 1 deletion package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ tests:
- generic-arbitrary
- graphula
- hspec
- markdown-unlit
- monad-logger
- persistent
- persistent-sqlite
Expand All @@ -82,6 +81,8 @@ tests:
- condition: "flag(persistent-template)"
dependencies:
- persistent-template
build-tools:
- markdown-unlit

flags:
persistent-template:
Expand Down
1 change: 1 addition & 0 deletions src/Graphula/Arbitrary.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-- | 'Arbitrary' operations that respect Graphula's seed
{-# OPTIONS_GHC -Wno-deprecations #-}
module Graphula.Arbitrary
( generate
) where
Expand Down
2 changes: 1 addition & 1 deletion stack-nightly.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resolver: nightly-2023-07-25
resolver: nightly-2025-09-23
1 change: 0 additions & 1 deletion test/README.lhs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import Graphula
import Test.Hspec
import Test.QuickCheck
import Test.QuickCheck.Arbitrary.Generic
import Text.Markdown.Unlit ()

instance (ToBackendKey SqlBackend a) => Arbitrary (Key a) where
arbitrary = toSqlKey <$> arbitrary
Expand Down
Loading