Skip to content

Commit 3ac3d33

Browse files
karesjsvd
authored andcommitted
start running Java test along side Ruby (rspec) ones (#36)
* run rake test as the default (test) command * use SPEC_OPTS="-fd" if not specified in env
1 parent 4a54c46 commit 3ac3d33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
command: .ci/run.sh
1616
env_file: ${DOCKER_ENV:-docker.env}
1717
environment:
18-
- SPEC_OPTS
18+
- SPEC_OPTS="${SPEC_OPTS:--fd}"
1919
- LOG_LEVEL # devutils (>= 2.0.4) reads the ENV and sets LS logging
2020
- CI # CI=true in Travis-CI
2121
- TRAVIS # TRAVIS=true in Travis-CI

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ env
55

66
set -ex
77

8-
bundle exec rspec --format=documentation
8+
jruby -rbundler/setup -S rake test

0 commit comments

Comments
 (0)