We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 716f7e5 + abc4a77 commit ed49a0dCopy full SHA for ed49a0d
.github/workflows/ci.yaml
@@ -47,6 +47,8 @@ jobs:
47
run: bin/setup
48
- name: Run tests
49
run: bundle exec rake
50
+ - name: Run core security tests
51
+ run: bundle exec rake spec:security
52
- name: Report code coverage
53
if: "${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' }}"
54
continue-on-error: true
lib/tasks_private/spec.rake
@@ -1,6 +1,9 @@
1
namespace :spec do
2
desc "Setup environment specs"
3
task :setup => ["app:test:vmdb:setup"]
4
+
5
+ desc "Run security specs from core"
6
+ task :security => ["app:test:security"]
7
end
8
9
desc "Run all specs"
0 commit comments