Skip to content

Commit 254d6d4

Browse files
committed
dbg: inspect some dirs
1 parent 3d70acd commit 254d6d4

2 files changed

Lines changed: 19 additions & 20 deletions

File tree

.github/workflows/test.yaml

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323

24+
- name: Inspect cache
25+
shell: bash
26+
run: |
27+
echo HOME IS $HOME
28+
ls -lA $HOME
29+
2430
- name: Cache
2531
uses: actions/cache@v4
2632
timeout-minutes: 1
@@ -55,16 +61,16 @@ jobs:
5561
TEST_FLAGS: '--no-fail-fast'
5662
run: ./test.sh
5763

58-
- name: Test (release)
59-
shell: bash
60-
env:
61-
RUSTFLAGS: '-D warnings'
62-
RUSTDOCFLAGS: '-D warnings'
63-
FMT: 'false'
64-
LINT: 'false'
65-
DOC: 'true'
66-
BUILD: 'true'
67-
TEST: 'true'
68-
BUILD_FLAGS: '--locked'
69-
TEST_FLAGS: '--no-fail-fast'
70-
run: ./test.sh --release
64+
# - name: Test (release)
65+
# shell: bash
66+
# env:
67+
# RUSTFLAGS: '-D warnings'
68+
# RUSTDOCFLAGS: '-D warnings'
69+
# FMT: 'false'
70+
# LINT: 'false'
71+
# DOC: 'true'
72+
# BUILD: 'true'
73+
# TEST: 'true'
74+
# BUILD_FLAGS: '--locked'
75+
# TEST_FLAGS: '--no-fail-fast'
76+
# run: ./test.sh --release

tests/cli_errors.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@ use parallel_disk_usage::{
2626
#[cfg(unix)]
2727
use std::{collections::BTreeSet, path::Path};
2828

29-
#[cfg(windows)]
30-
fn test_path_join_absolute() {
31-
let path = std::path::PathBuf::from(".").join("C:\\");
32-
dbg!(&path);
33-
assert_eq!(path, std::path::PathBuf::from("C:\\"));
34-
}
35-
3629
fn stdio(command: Command) -> Command {
3730
command
3831
.with_stdin(Stdio::null())

0 commit comments

Comments
 (0)