de0b994981
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/python-rpm-generators.git#a295a5855988a761a2adf2e87a06c01fbcc6439b
21 lines
517 B
Bash
Executable File
21 lines
517 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Requirements:
|
|
# - pip >= 20.0.1
|
|
# - poetry # Due to bug: https://github.com/pypa/pip/issues/9701
|
|
#
|
|
|
|
# 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}
|