We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f345207 commit f0ce869Copy full SHA for f0ce869
video/cloud-client/shotchange/shotchange_test.py
@@ -14,19 +14,13 @@
14
# See the License for the specific language governing permissions and
15
# limitations under the License.
16
17
-import os
18
-
19
import pytest
20
21
import shotchange
22
23
-BUCKET = os.environ['CLOUD_STORAGE_BUCKET']
24
-SHOTS_FILE_PATH = '/video/gbikes_dinosaur.mp4'
25
26
27
@pytest.mark.slow
28
def test_shots_dino(capsys):
29
- shotchange.analyze_shots(
30
- 'gs://{}{}'.format(BUCKET, SHOTS_FILE_PATH))
+ shotchange.analyze_shots('gs://demomaker/gbikes_dinosaur.mp4')
31
out, _ = capsys.readouterr()
32
assert 'Shot 1:' in out
0 commit comments