This commit adds the `pkgmgr_nix_store` volume mount (`/nix`) to all test runners (unit, integration, container sanity checks, and E2E tests). Previously only the Arch-based E2E container mounted a persistent `/nix` store, causing all other distros (Debian, Ubuntu, Fedora, CentOS, etc.) to download the entire Nix closure repeatedly during test runs. Changes: - Add `-v pkgmgr_nix_store:/nix` to: - scripts/test/test-container.sh - scripts/test/test-e2e.sh (remove Arch-only condition) - scripts/test/test-unit.sh - scripts/test/test-integration.sh - Ensures all test containers reuse the same Nix store. Benefits: - Significantly faster test execution after the first run. - Prevents redundant downloads from cache.nixos.org. - Ensures consistent Nix environments across all test distros. No functional changes to pkgmgr itself; only test infrastructure improved. https://chatgpt.com/share/693890f5-2f54-800f-b47e-1925da85b434
26 lines
706 B
Bash
Executable File
26 lines
706 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "============================================================"
|
|
echo ">>> Running UNIT tests in Arch container"
|
|
echo "============================================================"
|
|
|
|
docker run --rm \
|
|
-v "$(pwd):/src" \
|
|
-v "pkgmgr_nix_cache:/root/.cache/nix" \
|
|
-v pkgmgr_nix_store:/nix \
|
|
--workdir /src \
|
|
-e PKGMGR_DEV=1 \
|
|
-e TEST_PATTERN="${TEST_PATTERN}" \
|
|
--entrypoint bash \
|
|
"package-manager-test-arch" \
|
|
-c '
|
|
set -e;
|
|
git config --global --add safe.directory /src || true;
|
|
nix develop .#default --no-write-lock-file -c \
|
|
python -m unittest discover \
|
|
-s tests/unit \
|
|
-t /src \
|
|
-p "$TEST_PATTERN";
|
|
'
|