Skip to content
Snippets Groups Projects
Commit 4482c5fd authored by Benjamin Jakimow's avatar Benjamin Jakimow
Browse files
parent 928b35ad
No related branches found
No related tags found
No related merge requests found
......@@ -23,5 +23,6 @@ pipelines:
- DISPLAY=:1.0
- export DISPLAY
- mkdir test-reports
- git lfs fetch
- python make/setuprepository.py
- python -m nose2 discover tests "test_*.py" > test-reports/test-report.txt
......@@ -81,7 +81,7 @@ class TestFileFormatLoading(TestCase):
print('DIR_RAPIDEYE undefined. skip test.')
return
files = file_search(searchDir, '*.tif', recursive=True)
files = [f for f in files if not re.search('_(udm|browse)\.tif$', f)]
files = [f for f in files if not re.search(r'_(udm|browse)\.tif$', f)]
self.TS.addSources(files)
self.assertEqual(len(files), len(self.TS))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment