Skip to content
Snippets Groups Projects
Commit c3615d04 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Remove CI configuration for the test suite

parent d926ac77
No related branches found
No related tags found
1 merge request!19Remove the test suite
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
version: 2.1 version: 2.1
jobs: jobs:
test: build:
docker: docker:
# Run in a highly Nix-capable environment. This lets us use Stack's nix # Run in a highly Nix-capable environment. This lets us use Stack's nix
# integration and other useful Nix features to specify and run the # integration and other useful Nix features to specify and run the
...@@ -89,8 +89,6 @@ jobs: ...@@ -89,8 +89,6 @@ jobs:
--no-terminal \ --no-terminal \
--only-dependencies \ --only-dependencies \
--fast \ --fast \
--test \
--no-run-tests \
--jobs 1 \ --jobs 1 \
--interleaved-output" --interleaved-output"
nix-shell shell.nix --run "$BUILD" nix-shell shell.nix --run "$BUILD"
...@@ -125,19 +123,12 @@ jobs: ...@@ -125,19 +123,12 @@ jobs:
# times for our dependencies (as well as reduce compiler memory # times for our dependencies (as well as reduce compiler memory
# usage which may be important at least for stripe-core). # usage which may be important at least for stripe-core).
# #
# --test runs the test suite.
#
# --coverage gathers coverage information during the test run.
# Steps below publish the result.
#
# --haddock builds the Haskell API documentation. # --haddock builds the Haskell API documentation.
# --haddock-internal builds docs even for unexposed modules. # --haddock-internal builds docs even for unexposed modules.
# --no-haddock-deps skips building docs for all our dependencies. # --no-haddock-deps skips building docs for all our dependencies.
BUILD="stack build \ BUILD="stack build \
--no-terminal \ --no-terminal \
--fast \ --fast \
--test \
--coverage \
--haddock \ --haddock \
--haddock-internal \ --haddock-internal \
--no-haddock-deps" --no-haddock-deps"
...@@ -174,4 +165,4 @@ workflows: ...@@ -174,4 +165,4 @@ workflows:
version: 2 version: 2
everything: everything:
jobs: jobs:
- "test" - "build"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment