-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move cli-integration tests to their own package
- Loading branch information
Showing
10 changed files
with
150 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: unison-cli-integration | ||
github: unisonweb/unison | ||
copyright: Copyright (C) 2013-2018 Unison Computing, PBC and contributors | ||
|
||
flags: | ||
optimized: | ||
manual: true | ||
default: false | ||
|
||
ghc-options: -Wall | ||
|
||
executables: | ||
cli-integration-tests: | ||
when: | ||
- condition: false | ||
other-modules: Paths_unison_cli_integration | ||
source-dirs: integration-tests | ||
main: Suite.hs | ||
ghc-options: -W -threaded -rtsopts "-with-rtsopts=-N -T" -v0 | ||
dependencies: | ||
- base | ||
- code-page | ||
- filepath | ||
- directory | ||
- easytest | ||
- process | ||
- shellmet | ||
- time | ||
build-tools: | ||
- unison-cli-main:unison | ||
|
||
when: | ||
- condition: flag(optimized) | ||
ghc-options: -O2 -funbox-strict-fields | ||
|
||
default-extensions: | ||
- ApplicativeDo | ||
- BangPatterns | ||
- BlockArguments | ||
- DeriveAnyClass | ||
- DeriveFunctor | ||
- DeriveFoldable | ||
- DeriveTraversable | ||
- DeriveGeneric | ||
- DerivingStrategies | ||
- DerivingVia | ||
- DoAndIfThenElse | ||
- DuplicateRecordFields | ||
- FlexibleContexts | ||
- FlexibleInstances | ||
- GADTs | ||
- GeneralizedNewtypeDeriving | ||
- ImportQualifiedPost | ||
- InstanceSigs | ||
- KindSignatures | ||
- LambdaCase | ||
- MultiParamTypeClasses | ||
- MultiWayIf | ||
- NamedFieldPuns | ||
- NumericUnderscores | ||
- OverloadedLabels | ||
- OverloadedStrings | ||
- PatternSynonyms | ||
- RankNTypes | ||
- ScopedTypeVariables | ||
- TupleSections | ||
- TypeApplications | ||
- ViewPatterns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
cabal-version: 1.12 | ||
|
||
-- This file has been generated from package.yaml by hpack version 0.35.2. | ||
-- | ||
-- see: https://github.com/sol/hpack | ||
|
||
name: unison-cli-integration | ||
version: 0.0.0 | ||
homepage: https://github.com/unisonweb/unison#readme | ||
bug-reports: https://github.com/unisonweb/unison/issues | ||
copyright: Copyright (C) 2013-2018 Unison Computing, PBC and contributors | ||
build-type: Simple | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/unisonweb/unison | ||
|
||
flag optimized | ||
manual: True | ||
default: False | ||
|
||
executable cli-integration-tests | ||
main-is: Suite.hs | ||
other-modules: | ||
IntegrationTests.ArgumentParsing | ||
hs-source-dirs: | ||
integration-tests | ||
default-extensions: | ||
ApplicativeDo | ||
BangPatterns | ||
BlockArguments | ||
DeriveAnyClass | ||
DeriveFunctor | ||
DeriveFoldable | ||
DeriveTraversable | ||
DeriveGeneric | ||
DerivingStrategies | ||
DerivingVia | ||
DoAndIfThenElse | ||
DuplicateRecordFields | ||
FlexibleContexts | ||
FlexibleInstances | ||
GADTs | ||
GeneralizedNewtypeDeriving | ||
ImportQualifiedPost | ||
InstanceSigs | ||
KindSignatures | ||
LambdaCase | ||
MultiParamTypeClasses | ||
MultiWayIf | ||
NamedFieldPuns | ||
NumericUnderscores | ||
OverloadedLabels | ||
OverloadedStrings | ||
PatternSynonyms | ||
RankNTypes | ||
ScopedTypeVariables | ||
TupleSections | ||
TypeApplications | ||
ViewPatterns | ||
ghc-options: -Wall -W -threaded -rtsopts "-with-rtsopts=-N -T" -v0 | ||
build-tool-depends: | ||
unison-cli-main:unison | ||
build-depends: | ||
base | ||
, code-page | ||
, directory | ||
, easytest | ||
, filepath | ||
, process | ||
, shellmet | ||
, time | ||
default-language: Haskell2010 | ||
if flag(optimized) | ||
ghc-options: -O2 -funbox-strict-fields |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters