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.
1 parent 0956cc2 commit b479775Copy full SHA for b479775
.github/workflows/check-sca-integrations.yml
@@ -46,9 +46,9 @@ jobs:
46
- name: Test running scanpipe for checking the loaded content
47
shell: bash
48
run: |
49
- scanpipe shell --command "from scanpipe.models import DiscoveredPackage; print(DiscoveredPackage.objects.count())"
50
-
51
-# - name: Test running scanpipe for checking the loaded content
52
-# shell: bash
53
-# run: |
54
-# scanpipe status --project ${{ steps.scancode.inputs.project-name }}
+ scanpipe shell --command "\
+ from scanpipe.models import DiscoveredPackage; \
+ package_manager = DiscoveredPackage.objects; \
+ assert package_manager.count() > 90; \
+ assert package_manager.vulnerable.count() > 40; \
+ "
0 commit comments