Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Run Pest Tests
if: ${{ matrix.php != '8.1' }}
run: include/vendor/bin/pest plugins/audit/tests/Security --display-warnings
run: include/vendor/bin/pest plugins/audit/tests/Security --bootstrap plugins/audit/tests/bootstrap.php --display-warnings
working-directory: cacti

- name: Run Audit Security Helper Tests
Expand Down
24 changes: 24 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "cacti/plugin_audit",
"description": "plugin_audit plugin for Cacti",
"license": "GPL-2.0-or-later",
"require-dev": {
"pestphp/pest": "^1.23"
},
"config": {
"platform": {
"php": "7.4.33"
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload-dev": {
"files": [
"tests/bootstrap.php"
]
Comment thread
somethingwithproof marked this conversation as resolved.
},
"scripts": {
"test": "vendor/bin/pest"
}
}
Loading
Loading