From 151ee69e2f9d388cb2fad8319f441d415f7b5326 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 17 Dec 2017 01:03:43 +0100 Subject: [PATCH] We use a gem package for solving door_3. We have tried to add multitple languages in build so we can run our gem package and pass our test. --- .travis.yml | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1411b10..b412053 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,19 @@ -language: python -python: - - 3.6 -install: - - pip install -r requirements.txt -script: - - pytest --junitxml=result.xml - - python badge.py -after_success: - - coveralls +matrix: + include: + - language: ruby + rvm: + - 2.2 + - jruby + - 2.0.0-p247 + install: gem install zsteg + + - language: python + python: + - 3.6 + install: + - pip install -r requirements.txt + script: + - pytest --junitxml=result.xml + - python badge.py + after_success: + - coveralls