Skip to content

Commit

Permalink
improvement: add docker-compose.yml for tests (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
thekuwayama authored Apr 15, 2020
1 parent 4f23ed5 commit 7b8a7fc
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions integration_tests/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Usage

```bash
$ cd /path/to/livy-go/integration_tests/wordcount/

$ sbt assembly

$ cd ..

$ docker-compose up -d

$ go test -v ./...
```
8 changes: 8 additions & 0 deletions integration_tests/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3'
services:
livy:
image: thekuwayama/livy:0.7.0
container_name: livy
ports:
- 8998:8998
restart: always

0 comments on commit 7b8a7fc

Please sign in to comment.