Skip to content

Commit 33469f4

Browse files
authored
Merge branch 'main' into lafjenljaenf
2 parents f069d33 + dae30f1 commit 33469f4

File tree

6 files changed

+2
-25
lines changed

6 files changed

+2
-25
lines changed

.github/workflows/cpp_tests.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
paths:
8-
- src/torchcodec/*
9-
- test/*
10-
- .github/workflows/cpp_tests.yaml # self reference
117

128
concurrency:
139
group: unit-test${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}

.github/workflows/docs.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
paths:
8-
- src/torchcodec/*
9-
- docs/*
10-
- .github/workflows/docs.yaml # self reference
117

128
permissions:
139
id-token: write

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ name: Build and test Linux CUDA wheels
22

33
on:
44
pull_request:
5-
paths:
6-
- src/torchcodec/*
7-
- benchmarks/*
8-
- packaging/*
9-
- test/*
10-
- .github/workflows/linux_cuda_wheel.yaml # self reference
115
push:
126
branches:
137
- nightly

.github/workflows/linux_wheel.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Build and test Linux wheel
22

33
on:
44
pull_request:
5-
paths:
6-
- src/torchcodec/*
7-
- packaging/*
8-
- test/*
9-
- .github/workflows/linux_wheel.yaml # self reference
105
push:
116
branches:
127
- nightly

.github/workflows/macos_wheel.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Build and test MacOS wheel
22

33
on:
44
pull_request:
5-
paths:
6-
- src/torchcodec/*
7-
- packaging/*
8-
- test/*
9-
- .github/workflows/macos_wheel.yaml # self reference
105
push:
116
branches:
127
- nightly

benchmarks/decoders/benchmark_decoders_library.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,8 @@ def run_batch_using_threads(
496496
for _ in range(batch_parameters.batch_size):
497497
futures.append(executor.submit(function, *args))
498498
for f in futures:
499-
assert f.result()
499+
# TODO: Add a stronger check here based on arguments to the function.
500+
assert len(f.result()) > 0
500501
executor.shutdown(wait=True)
501502

502503

0 commit comments

Comments
 (0)