forked from decentral1se/tasty-discover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
57 lines (51 loc) · 1.39 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: "tasty-discover"
version: "4.1.1"
synopsis: "Test discovery for the tasty framework."
description: >
Automatic test discovery and runner for the tasty framework.
Prefix your test case names and tasty-discover will discover, collect and run
them. All popular test libraries are covered. Configure once and then just
write your tests. Avoid forgetting to add test modules to your Cabal/Hpack
files. Tasty ingredients are included along with various configuration
options for different use cases. Please see the `README.md` below for how to
get started.
author: "Luke Murphy"
maintainer: "Luke Murphy <[email protected]>"
copyright: "2016 Luke Murphy"
license: "MIT"
license-file: "LICENSE"
github: "lwm/tasty-discover"
stability: "Experimental"
category: "Testing"
extra-source-files:
- "CHANGELOG.md"
- "README.md"
dependencies:
- "base >= 4.8 && < 5.0"
- "containers >= 0.4 && < 1.0"
- "directory >= 1.1 && < 2.0"
- "filepath >= 1.3 && < 2.0"
- "Glob >= 0.8 && < 1.0"
ghc-options:
- "-Wall"
library:
source-dirs: "library"
executables:
tasty-discover:
main: "executable/Main.hs"
dependencies:
- "tasty-discover"
tests:
test:
main: "Driver.hs"
source-dirs: "test"
dependencies:
- "base"
- "tasty"
- "tasty-discover"
- "tasty-hspec"
- "tasty-hunit"
- "tasty-quickcheck"
- "tasty-smallcheck"
- "tasty-hedgehog"
- "hedgehog"