Skip to content

Commit 76f64f5

Browse files
committed
fixing the torch stuff
1 parent aec70aa commit 76f64f5

2 files changed

Lines changed: 18 additions & 6 deletions

File tree

CRAN-SUBMISSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Version: 0.1.0
2+
Date: 2026-07-15 18:35:49 UTC
3+
SHA: aec70aa41d692fcfe299f9212f2a21d0063bd74a

tests/testthat.R

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,21 @@ cleanup_uv_lock_files = function(paths = c(".", tempdir(), dirname(tempdir())))
1515
paths = paths[dir.exists(paths)]
1616

1717
lock_files = unlist(lapply(paths, function(path) {
18-
list.files(
19-
path = path,
20-
pattern = "^uv.*[.]lock$",
21-
full.names = TRUE,
22-
recursive = TRUE,
23-
include.dirs = FALSE
18+
c(
19+
list.files(
20+
path = path,
21+
pattern = "^uv.*[.]lock$",
22+
full.names = TRUE,
23+
recursive = TRUE,
24+
include.dirs = FALSE
25+
),
26+
list.files(
27+
path = path,
28+
pattern = "^torch-shm-dir.*",
29+
full.names = TRUE,
30+
recursive = TRUE,
31+
include.dirs = FALSE
32+
),
2433
)
2534
}))
2635
lock_files = unique(lock_files[file.exists(lock_files)])

0 commit comments

Comments
 (0)