An open API service indexing awesome lists of open source software.

https://github.com/aherrmann/bazel-nix-hspec-discover


https://github.com/aherrmann/bazel-nix-hspec-discover

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# bazel-nix-hspec-discover

The goal is to have both the following commands working with the same `Spec.hs`

```sh
bazel test :test
```

which currently works with

```hs
{-# LANGUAGE CPP #-}
{-# OPTIONS_GHC -F -pgmF HSPEC_DISCOVER #-}
```

and

```sh
bazel run :repl
```

which currently works with

```hs
{-# OPTIONS_GHC -F -pgmF hspec-discover #-}
```