Skip to content

Commit

Permalink
Clean up data.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Nov 18, 2024
1 parent 48e72b6 commit c29cb86
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Binary file removed data.ts
Binary file not shown.
10 changes: 10 additions & 0 deletions tests/test_streams.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
import os
from fractions import Fraction

import pytest

import av

from .common import fate_suite


class TestStreams:
@pytest.fixture(autouse=True)
def cleanup(self):
yield
for file in ("data.ts", "out.mkv"):
if os.path.exists(file):
os.remove(file)

def test_stream_tuples(self) -> None:
for fate_name in ("h264/interlaced_crop.mp4",):
container = av.open(fate_suite(fate_name))
Expand Down

0 comments on commit c29cb86

Please sign in to comment.