mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
9c86d35a3f
- Add missing executable bits to all scripts - Remove executable bits from all files that are not scripts, e.g. js, html, and Python libraries. - Remove Python shebang from all Python library files. It's frown upon to have executable library files in site-packages. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Armando Neto <abiagion@redhat.com>
27 lines
564 B
Python
27 lines
564 B
Python
#
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
#
|
|
"""Dummy package for FreeIPA
|
|
|
|
ipatests is not yet available as PyPI package.
|
|
"""
|
|
|
|
from os.path import abspath, dirname
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
# include ../../ for ipasetup.py
|
|
sys.path.append(dirname(dirname(dirname(abspath(__file__)))))
|
|
from ipasetup import ipasetup # noqa: E402
|
|
|
|
ipasetup(
|
|
name='ipatests',
|
|
doc = __doc__,
|
|
packages=[
|
|
"ipatests",
|
|
],
|
|
install_requires=[
|
|
"ipaclient",
|
|
]
|
|
)
|