|
60 | 60 | "scripts": {
|
61 | 61 | "test-cs": "vendor/bin/phpcs -sp",
|
62 | 62 | "test-unit": "vendor/bin/phpunit --coverage-text",
|
| 63 | + "test-unit-lowest": "vendor/bin/phpunit --configuration=phpunit.10.0.xml --coverage-text", |
63 | 64 | "clear-allure-results": "rm -rf ./build/allure-results",
|
64 | 65 | "test-report": [
|
65 | 66 | "@clear-allure-results",
|
66 | 67 | "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=positive",
|
67 | 68 | "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=negative; exit 0"
|
68 | 69 | ],
|
| 70 | + "test-report-lowest": [ |
| 71 | + "@clear-allure-results", |
| 72 | + "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=positive", |
| 73 | + "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=negative; exit 0" |
| 74 | + ], |
69 | 75 | "test-report-windows": [
|
70 | 76 | "@clear-allure-results",
|
71 | 77 | "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=positive",
|
72 | 78 | "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=negative & exit 0"
|
73 | 79 | ],
|
| 80 | + "test-report-windows-lowest": [ |
| 81 | + "@clear-allure-results", |
| 82 | + "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=positive", |
| 83 | + "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=negative & exit 0" |
| 84 | + ], |
74 | 85 | "test-psalm": "vendor/bin/psalm --shepherd",
|
75 | 86 | "test": [
|
76 | 87 | "@test-cs",
|
77 | 88 | "@test-unit",
|
78 | 89 | "@test-report",
|
79 | 90 | "@test-psalm"
|
80 | 91 | ],
|
| 92 | + "test-lowest": [ |
| 93 | + "@test-cs", |
| 94 | + "@test-unit-lowest", |
| 95 | + "@test-report-lowest", |
| 96 | + "@test-psalm" |
| 97 | + ], |
81 | 98 | "test-windows": [
|
82 | 99 | "@test-cs",
|
83 | 100 | "@test-unit",
|
84 | 101 | "@test-report-windows",
|
85 | 102 | "@test-psalm"
|
| 103 | + ], |
| 104 | + "test-windows-lowest": [ |
| 105 | + "@test-cs", |
| 106 | + "@test-unit-lowest", |
| 107 | + "@test-report-windows-lowest", |
| 108 | + "@test-psalm" |
86 | 109 | ]
|
87 | 110 | }
|
88 | 111 | }
|
0 commit comments