@schemastore/tox 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -359,6 +359,10 @@ export interface EnvRunBase {
|
|
|
359
359
|
* the commands to be called after testing
|
|
360
360
|
*/
|
|
361
361
|
commands_post?: Subs[][];
|
|
362
|
+
/**
|
|
363
|
+
* run commands_post even after interrupt (SIGINT), allow second interrupt to cancel
|
|
364
|
+
*/
|
|
365
|
+
interrupt_post_commands?: boolean;
|
|
362
366
|
/**
|
|
363
367
|
* commands to run before the environment is removed during recreation (e.g. cache cleanup)
|
|
364
368
|
*/
|
|
@@ -638,6 +642,10 @@ export interface EnvRunBase1 {
|
|
|
638
642
|
* the commands to be called after testing
|
|
639
643
|
*/
|
|
640
644
|
commands_post?: Subs[][];
|
|
645
|
+
/**
|
|
646
|
+
* run commands_post even after interrupt (SIGINT), allow second interrupt to cancel
|
|
647
|
+
*/
|
|
648
|
+
interrupt_post_commands?: boolean;
|
|
641
649
|
/**
|
|
642
650
|
* commands to run before the environment is removed during recreation (e.g. cache cleanup)
|
|
643
651
|
*/
|
package/package.json
CHANGED