free_mutant/.circleci/config.yml

56 lines
1.3 KiB
YAML
Raw Normal View History

defaults: &defaults
working_directory: ~/mutant
docker:
- image: circleci/ruby:2.5.3
version: 2
jobs:
unit_specs:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rspec spec/unit
2018-11-19 07:45:26 -05:00
integration_minitest:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rspec spec/integration -e minitest
integration_rspec:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rspec spec/integration -e rspec
integration_mutation_generation:
<<: *defaults
steps:
- checkout
- run: bundle install
2018-11-19 07:45:26 -05:00
- run: bundle exec rspec spec/integration -e generation
metrics:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rake metrics:rubocop
- run: bundle exec rake metrics:reek
- run: bundle exec rake metrics:flay
- run: bundle exec rake metrics:flog
mutant:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rake metrics:mutant
workflows:
version: 2
test:
jobs:
- unit_specs
- integration_rspec
2018-11-19 07:55:03 -05:00
- integration_minitest
- integration_mutation_generation
- metrics
- mutant