Skip to content

Commit 95c35c4

Browse files
committed
bazel/
Signed-off-by: Ryan Northey <[email protected]>
1 parent 9bbf4b2 commit 95c35c4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

bazel/website/tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ bazel test //website/tests/...
8484

8585
## Recommendations for Future Iterations
8686

87-
1. **Create Generator-Specific Wrappers**:
87+
1. **Create Generator-Specific Wrappers**:
8888
```starlark
8989
def pelican_website(**kwargs):
9090
# Set Pelican-specific defaults

bazel/website/tests/run_parameterized_tests.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ if [ ! -f "${TARBALL}" ]; then
3333
else
3434
EXTRACT_DIR=$(mktemp -d)
3535
trap "rm -rf ${EXTRACT_DIR}" EXIT
36-
36+
3737
if tar -xzf "${TARBALL}" -C "${EXTRACT_DIR}" 2>&1; then
3838
echo "✓ PASSED: Custom exclude tarball extracted"
39-
39+
4040
# Verify that fewer items are excluded
4141
# Note: This is a basic check - actual verification would depend on
4242
# knowing what the generator produces
4343
echo " Checking extracted contents..."
4444
file_count=$(find "${EXTRACT_DIR}" -type f | wc -l)
4545
echo " Found ${file_count} files"
46-
46+
4747
if [ "${file_count}" -gt 0 ]; then
4848
echo "✓ PASSED: Files exist in custom exclude output"
4949
else
@@ -65,14 +65,14 @@ if [ ! -f "${TARBALL}" ]; then
6565
failed=$((failed + 1))
6666
else
6767
EXTRACT_DIR=$(mktemp -d)
68-
68+
6969
if tar -xzf "${TARBALL}" -C "${EXTRACT_DIR}" 2>&1; then
7070
echo "✓ PASSED: Custom mappings tarball extracted"
71-
71+
7272
# Check that output was generated
7373
file_count=$(find "${EXTRACT_DIR}" -type f | wc -l)
7474
echo " Found ${file_count} files"
75-
75+
7676
if [ "${file_count}" -gt 0 ]; then
7777
echo "✓ PASSED: Files exist in custom mappings output"
7878
else

0 commit comments

Comments
 (0)