
* Added myself as uploader. * Added python{3,}-ddt as build-depends. * Using git tag based workflow as the package is from OpenStack: - Dropped upstream tarball artifacts (ChangeLog, AUTHORS, PKG-INFO). - Fixed debian/gbp.conf - Added export OSLO_PACKAGE_VERSION=$(VERSION) in debian/rules. * Added unit tests: - Added it in debian/rules. - Added in debian/bin/* commands which are normally generated by pbr, so that we can run unit tests. * Dropped Py3 compat patch applied upstream.
9 lines
115 B
Python
Executable File
9 lines
115 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys
|
|
|
|
from os_testr.os_testr import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|