diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 5 |
1 files changed, 5 insertions, 0 deletions
| @@ -51,10 +51,15 @@ | |||
| 51 | buildInputs = with pkgs; [ openssl ]; | 51 | buildInputs = with pkgs; [ openssl ]; |
| 52 | 52 | ||
| 53 | # Skip tests that require git in PATH (sandboxing issue) | 53 | # Skip tests that require git in PATH (sandboxing issue) |
| 54 | # These tests run fine in dev environment and CI | ||
| 54 | checkFlags = [ | 55 | checkFlags = [ |
| 56 | # Unit tests that spawn git subprocesses | ||
| 55 | "--skip=git::subprocess::tests::" | 57 | "--skip=git::subprocess::tests::" |
| 56 | "--skip=git::tests::" | 58 | "--skip=git::tests::" |
| 57 | "--skip=purgatory::helpers::tests::" | 59 | "--skip=purgatory::helpers::tests::" |
| 60 | # Integration tests that create git repos | ||
| 61 | "--skip=common::git_server::" | ||
| 62 | "--skip=common::purgatory_helpers::" | ||
| 58 | ]; | 63 | ]; |
| 59 | }; | 64 | }; |
| 60 | })) // { | 65 | })) // { |