e25505c276
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/python-rpm-generators#bfb7f70b994d667b703a6b16c2b35d5056572800
20 lines
450 B
Bash
Executable File
20 lines
450 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Requirements:
|
|
# - pip >= 20.0.1
|
|
#
|
|
|
|
# First prune old test data
|
|
rm -rf ./tests/data/scripts_pythondistdeps/usr
|
|
|
|
# First run the test suite, it will download the test-data again
|
|
python3 -m pytest --capture=no -vvv
|
|
|
|
# Archive the test data into a file with today's date
|
|
archive=test-sources-$(date +%Y-%m-%d).tar.gz
|
|
tar -zcvf ${archive} -C ./tests/data/scripts_pythondistdeps/ usr
|
|
|
|
# Now manually run:
|
|
# $ fedpkg new-sources ${archive}
|