Skip to content

Commit ed49a0d

Browse files
authored
Merge pull request #1213 from jrafanie/run_core_security_rake_task_from_api
Run core security tests against api
2 parents 716f7e5 + abc4a77 commit ed49a0d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
run: bin/setup
4848
- name: Run tests
4949
run: bundle exec rake
50+
- name: Run core security tests
51+
run: bundle exec rake spec:security
5052
- name: Report code coverage
5153
if: "${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' }}"
5254
continue-on-error: true

lib/tasks_private/spec.rake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
namespace :spec do
22
desc "Setup environment specs"
33
task :setup => ["app:test:vmdb:setup"]
4+
5+
desc "Run security specs from core"
6+
task :security => ["app:test:security"]
47
end
58

69
desc "Run all specs"

0 commit comments

Comments
 (0)