mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 09:30:21 -08:00
5cd449632f
* Add Python3.8 and CI Tests * Force testing of video in case ffmpeg not working
15 lines
262 B
Python
Executable File
15 lines
262 B
Python
Executable File
#! /usr/bin/env python
|
|
from __future__ import (
|
|
absolute_import,
|
|
division,
|
|
print_function,
|
|
unicode_literals,
|
|
)
|
|
|
|
import core
|
|
from core import transcoder
|
|
|
|
|
|
def test_transcoder_check():
|
|
assert transcoder.is_video_good(core.TEST_FILE, 1) is True
|