From 14b458dec6ec464278c4da76fcd0a8093690eaf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jann=20M=C3=BCller?= Date: Tue, 14 Jan 2025 16:26:19 +0100 Subject: [PATCH] Delete mock server (#65) --- .github/workflows/ci-oci.yaml | 2 +- src/exe/wst-poc-mock-server/Main.hs | 6 ------ src/wst-poc.cabal | 8 -------- 3 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 src/exe/wst-poc-mock-server/Main.hs diff --git a/.github/workflows/ci-oci.yaml b/.github/workflows/ci-oci.yaml index 2c61dfd..f92b130 100644 --- a/.github/workflows/ci-oci.yaml +++ b/.github/workflows/ci-oci.yaml @@ -25,7 +25,7 @@ jobs: tests: strategy: matrix: - image: [wst, wst-poc-mock-server] + image: [wst] runs-on: ubuntu-latest steps: diff --git a/src/exe/wst-poc-mock-server/Main.hs b/src/exe/wst-poc-mock-server/Main.hs deleted file mode 100644 index 79a5977..0000000 --- a/src/exe/wst-poc-mock-server/Main.hs +++ /dev/null @@ -1,6 +0,0 @@ -module Main where - -import Wst.Test.MockServer (runMockServer) - -main :: IO () -main = runMockServer diff --git a/src/wst-poc.cabal b/src/wst-poc.cabal index 4326791..c3bce1a 100644 --- a/src/wst-poc.cabal +++ b/src/wst-poc.cabal @@ -195,14 +195,6 @@ test-suite wst-poc-test , tasty-hunit , wst-poc -executable wst-poc-mock-server - import: lang - main-is: Main.hs - hs-source-dirs: exe/wst-poc-mock-server - build-depends: - , base - , wst-poc:test-lib - executable write-openapi-schema import: lang main-is: Main.hs