forked from fluidattacks/makes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refac(cross): fluidattacks#1223 restructure tests
- Move container to root directory - Move tests to root directory - Move utils to root directory - Create an isolated namespace per test - Adapt CI jobs
- Loading branch information
Showing
38 changed files
with
163 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
helloWorld = { | ||
enable = true; | ||
name = "Jane Doe"; | ||
}; | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
lintWithAjv = { | ||
"test" = { | ||
schema = "/tests/lintWithAjv/schema.json"; | ||
targets = | ||
[ "/tests/lintWithAjv/data.json" "/test/lintWithAjv/data.yaml" ]; | ||
}; | ||
}; | ||
} |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
makes/tests/makeScript/README.md → tests/makeScript/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# A Script With a Help | ||
|
||
- This is `makes/tests/makeScript/README.md` | ||
- This is `test/makeScript/README.md` | ||
- You might be looking at it beautifully rendered on GitHub / GitLab / etc. | ||
- You also might be looking at it beautifully rendedred on the CLI\*. | ||
|
||
\* `m . /tests/makeScript -h` (or `--help`) | ||
\* `m . /test/makeScript -h` (or `--help`) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
imports = [ | ||
./commitlint/makes.nix | ||
./computeOnAwsBatch/makes.nix | ||
./helloWorld/makes.nix | ||
./lintWithAjv/makes.nix | ||
./makeScript/makes.nix | ||
./makeSearchPaths/makes.nix | ||
./makeTemplate/makes.nix | ||
./pipelines/makes.nix | ||
./secretsForGpgFromEnv/makes.nix | ||
]; | ||
} |
File renamed without changes.
Oops, something went wrong.