"""Configuration file for pytest. This file gets picked up when running py.test tests: http://pytest.org/latest/writing_plugins.html#conftest """ import os import pytest @pytest.fixture def test_audio_asset_file_location(): """Test audio file.""" return os.path.abspath('tests/assets/file.wav') @pytest.fixture def test_mov_asset_file_location(): """Test mov file.""" return os.path.abspath('tests/assets/sample.mov') @pytest.fixture def test_tif_asset_file_location(): """Test tif file.""" return os.path.abspath('tests/assets/sample.tif')