├── .flake8 ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .hound.yml ├── .pylintrc ├── .pylinttestsrc ├── CONTRIBUTING.md ├── COPYING ├── GNUmakefile ├── KankuFile ├── README.md ├── TESTING.md ├── TarSCM ├── __init__.py ├── archive.py ├── changes.py ├── cli.py ├── config.py ├── exceptions.py ├── helpers.py ├── scm │ ├── __init__.py │ ├── base.py │ ├── bzr.py │ ├── git.py │ ├── hg.py │ ├── svn.py │ └── tar.py └── tasks.py ├── appimage ├── appimage.service ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── dist ├── debian.dsc └── obs-service-tar_scm.spec ├── obs_gbp ├── obs_scm ├── requirements.txt ├── snapcraft ├── snapcraft.service ├── tar ├── tar.service ├── tar_scm.py ├── tar_scm.rc ├── tar_scm.service.in └── tests ├── __init__.py ├── archiveobscpiotestcases.py ├── bzrfixtures.py ├── bzrtests.py ├── commontests.py ├── fake_classes.py ├── fixtures.py ├── fixtures ├── ArchiveOBSCpioTestCases │ ├── test_obscpio_broken_link │ │ └── repo │ │ │ └── broken_link │ ├── test_obscpio_create_archive │ │ └── repo │ │ │ ├── Readme.md │ │ │ ├── a │ │ │ ├── dir1 │ │ │ └── .keep │ │ │ └── test.spec │ ├── test_obscpio_extract_d │ │ └── repo │ │ │ ├── Readme.md │ │ │ ├── a │ │ │ ├── dir1 │ │ │ └── .keep │ │ │ └── test.spec │ ├── test_obscpio_extract_glob │ │ └── repo │ │ │ ├── Readme.md │ │ │ ├── a │ │ │ ├── dir1 │ │ │ └── .keep │ │ │ ├── test.rpmlintrc │ │ │ └── test.spec │ ├── test_obscpio_extract_mf │ │ └── repo │ │ │ ├── Readme.md │ │ │ ├── a │ │ │ ├── dir1 │ │ │ └── .keep │ │ │ └── test.spec │ └── test_obscpio_extract_of │ │ └── repo │ │ ├── Readme.md │ │ ├── a │ │ ├── dir1 │ │ └── .keep │ │ └── test.spec ├── GitTests │ └── test_find_valid_commit │ │ └── fixtures.tar ├── TasksTestCases │ ├── test_appimage_empty_build │ │ └── appimage.yml │ ├── test_appimage_empty_build_git │ │ └── appimage.yml │ ├── test_generate_tl_multi_tasks │ │ └── snapcraft.yaml │ ├── test_generate_tl_single_task │ │ └── snapcraft.yaml │ ├── test_generate_tl_st_appimage │ │ └── appimage.yml │ └── test_tasks_finalize └── UnitTestCases │ ├── test_config_debug_tar_scm │ └── test.rc │ ├── test_config_files_ordering │ ├── a.cfg │ └── b.cfg │ ├── test_config_no_faked_header │ └── test.ini │ └── test_unicode_in_filename │ └── test │ └── äöü.txt ├── gitfixtures.py ├── githgtests.py ├── gitsvntests.py ├── gittests.py ├── hgfixtures.py ├── hgtests.py ├── scm-wrapper ├── scm.py ├── scmlogs.py ├── svnfixtures.py ├── svntests.py ├── tarfixtures.py ├── tartests.py ├── tasks.py ├── test.py ├── testassertions.py ├── testenv.py ├── unittestcases.py └── utils.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/.hound.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pylinttestsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/.pylinttestsrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/COPYING -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/GNUmakefile -------------------------------------------------------------------------------- /KankuFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/KankuFile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TESTING.md -------------------------------------------------------------------------------- /TarSCM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/__init__.py -------------------------------------------------------------------------------- /TarSCM/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/archive.py -------------------------------------------------------------------------------- /TarSCM/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/changes.py -------------------------------------------------------------------------------- /TarSCM/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/cli.py -------------------------------------------------------------------------------- /TarSCM/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/config.py -------------------------------------------------------------------------------- /TarSCM/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/exceptions.py -------------------------------------------------------------------------------- /TarSCM/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/helpers.py -------------------------------------------------------------------------------- /TarSCM/scm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/scm/__init__.py -------------------------------------------------------------------------------- /TarSCM/scm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/scm/base.py -------------------------------------------------------------------------------- /TarSCM/scm/bzr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/scm/bzr.py -------------------------------------------------------------------------------- /TarSCM/scm/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/scm/git.py -------------------------------------------------------------------------------- /TarSCM/scm/hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/scm/hg.py -------------------------------------------------------------------------------- /TarSCM/scm/svn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/scm/svn.py -------------------------------------------------------------------------------- /TarSCM/scm/tar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/scm/tar.py -------------------------------------------------------------------------------- /TarSCM/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/TarSCM/tasks.py -------------------------------------------------------------------------------- /appimage: -------------------------------------------------------------------------------- 1 | tar_scm.py -------------------------------------------------------------------------------- /appimage.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/appimage.service -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /dist/debian.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/dist/debian.dsc -------------------------------------------------------------------------------- /dist/obs-service-tar_scm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/dist/obs-service-tar_scm.spec -------------------------------------------------------------------------------- /obs_gbp: -------------------------------------------------------------------------------- 1 | tar_scm.py -------------------------------------------------------------------------------- /obs_scm: -------------------------------------------------------------------------------- 1 | tar_scm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/requirements.txt -------------------------------------------------------------------------------- /snapcraft: -------------------------------------------------------------------------------- 1 | tar_scm.py -------------------------------------------------------------------------------- /snapcraft.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/snapcraft.service -------------------------------------------------------------------------------- /tar: -------------------------------------------------------------------------------- 1 | tar_scm.py -------------------------------------------------------------------------------- /tar.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tar.service -------------------------------------------------------------------------------- /tar_scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tar_scm.py -------------------------------------------------------------------------------- /tar_scm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tar_scm.rc -------------------------------------------------------------------------------- /tar_scm.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tar_scm.service.in -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/archiveobscpiotestcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/archiveobscpiotestcases.py -------------------------------------------------------------------------------- /tests/bzrfixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/bzrfixtures.py -------------------------------------------------------------------------------- /tests/bzrtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/bzrtests.py -------------------------------------------------------------------------------- /tests/commontests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/commontests.py -------------------------------------------------------------------------------- /tests/fake_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fake_classes.py -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_broken_link/repo/broken_link: -------------------------------------------------------------------------------- 1 | non-existant-file -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_create_archive/repo/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_create_archive/repo/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_create_archive/repo/dir1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_create_archive/repo/test.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_d/repo/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_d/repo/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_d/repo/dir1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_d/repo/test.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_glob/repo/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_glob/repo/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_glob/repo/dir1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_glob/repo/test.rpmlintrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_glob/repo/test.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_mf/repo/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_mf/repo/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_mf/repo/dir1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_mf/repo/test.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_of/repo/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_of/repo/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_of/repo/dir1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/ArchiveOBSCpioTestCases/test_obscpio_extract_of/repo/test.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/GitTests/test_find_valid_commit/fixtures.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fixtures/GitTests/test_find_valid_commit/fixtures.tar -------------------------------------------------------------------------------- /tests/fixtures/TasksTestCases/test_appimage_empty_build/appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fixtures/TasksTestCases/test_appimage_empty_build/appimage.yml -------------------------------------------------------------------------------- /tests/fixtures/TasksTestCases/test_appimage_empty_build_git/appimage.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/TasksTestCases/test_generate_tl_multi_tasks/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fixtures/TasksTestCases/test_generate_tl_multi_tasks/snapcraft.yaml -------------------------------------------------------------------------------- /tests/fixtures/TasksTestCases/test_generate_tl_single_task/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fixtures/TasksTestCases/test_generate_tl_single_task/snapcraft.yaml -------------------------------------------------------------------------------- /tests/fixtures/TasksTestCases/test_generate_tl_st_appimage/appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fixtures/TasksTestCases/test_generate_tl_st_appimage/appimage.yml -------------------------------------------------------------------------------- /tests/fixtures/TasksTestCases/test_tasks_finalize: -------------------------------------------------------------------------------- 1 | test_generate_tl_multi_tasks/ -------------------------------------------------------------------------------- /tests/fixtures/UnitTestCases/test_config_debug_tar_scm/test.rc: -------------------------------------------------------------------------------- 1 | var=var 2 | -------------------------------------------------------------------------------- /tests/fixtures/UnitTestCases/test_config_files_ordering/a.cfg: -------------------------------------------------------------------------------- 1 | var=a 2 | -------------------------------------------------------------------------------- /tests/fixtures/UnitTestCases/test_config_files_ordering/b.cfg: -------------------------------------------------------------------------------- 1 | var=b 2 | -------------------------------------------------------------------------------- /tests/fixtures/UnitTestCases/test_config_no_faked_header/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/fixtures/UnitTestCases/test_config_no_faked_header/test.ini -------------------------------------------------------------------------------- /tests/fixtures/UnitTestCases/test_unicode_in_filename/test/äöü.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gitfixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/gitfixtures.py -------------------------------------------------------------------------------- /tests/githgtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/githgtests.py -------------------------------------------------------------------------------- /tests/gitsvntests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/gitsvntests.py -------------------------------------------------------------------------------- /tests/gittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/gittests.py -------------------------------------------------------------------------------- /tests/hgfixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/hgfixtures.py -------------------------------------------------------------------------------- /tests/hgtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/hgtests.py -------------------------------------------------------------------------------- /tests/scm-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/scm-wrapper -------------------------------------------------------------------------------- /tests/scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/scm.py -------------------------------------------------------------------------------- /tests/scmlogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/scmlogs.py -------------------------------------------------------------------------------- /tests/svnfixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/svnfixtures.py -------------------------------------------------------------------------------- /tests/svntests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/svntests.py -------------------------------------------------------------------------------- /tests/tarfixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/tarfixtures.py -------------------------------------------------------------------------------- /tests/tartests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/tartests.py -------------------------------------------------------------------------------- /tests/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/tasks.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/testassertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/testassertions.py -------------------------------------------------------------------------------- /tests/testenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/testenv.py -------------------------------------------------------------------------------- /tests/unittestcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/unittestcases.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openSUSE/obs-service-tar_scm/HEAD/tests/utils.py --------------------------------------------------------------------------------