Skip to content

Commit

Permalink
Small refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
vsafonkin committed Oct 4, 2019
1 parent 610a8fe commit c921698
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 4 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ jobs:
bundle install
displayName: "bundle install"
- script: cd ./CalSmokeApp && bundle install
- script: bundle install
workingDirectory: 'CalSmokeApp'
displayName: "CalSmokeApp bundle install"

- script: cd ./CalSmokeApp && make app-cal
- script: make app-cal
workingDirectory: 'CalSmokeApp'
displayName: "make app-cal"

- script: bundle exec bin/ci/cucumber.rb
Expand Down
3 changes: 0 additions & 3 deletions bin/ci/cucumber.rb
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ def select_sim_by_name(simctl, regex)
# if none failed then we have success
exit 0 if failed == 0

# the travis ci environment is not stable enough to have all tests passing
exit failed unless Luffa::Environment.travis_ci?

# we'll take 75% passing as good indicator of health
expected = 75
actual = ((passed.to_f/sims.to_f) * 100).to_i
Expand Down

0 comments on commit c921698

Please sign in to comment.