Esempio n. 1
0
install_requires = [
    'pytest',
    'pytest-shutil',
    'gitpython',
]

tests_require = []

entry_points = {
    'pytest11': [
        'git_repo = pytest_git',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_git')
    kwargs.update(
        dict(
            name='pytest-git',
            description='Git repository fixture for py.test',
            platforms=['unix', 'linux'],
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            py_modules=['pytest_git'],
            entry_points=entry_points,
        ))
    setup(**kwargs)
Esempio n. 2
0
install_requires = ['six',
                    'pytest',
                    'gprof2dot',
                    ]

tests_require = [
                 'pytest-virtualenv',
                 ]

entry_points = {
    'pytest11': [
        'profiling = pytest_profiling',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_profiling')
    kwargs.update(dict(
        name='pytest-profiling',
        description='Profiling plugin for py.test',
        author='Ed Catmur',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_profiling'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 3
0
    "Programming Language :: Python :: 2",
    "Programming Language :: Python :: 2.6",
    "Programming Language :: Python :: 2.7",
]

install_requires = ["pytest-server-fixtures", "pytest", "pyramid", "waitress"]

tests_require = ["pytest-cov", "pyramid-debugtoolbar"]

entry_points = {
    "pytest11": ["pyramid_server = pytest_pyramid_server"],
    "paste.app_factory": ["pyramid_server_test = pyramid_server_test:main"],
}

if __name__ == "__main__":
    kwargs = common_setup("pytest_pyramid_server")
    kwargs.update(
        dict(
            name="pytest-pyramid-server",
            description="Pyramid server fixture for py.test",
            author="Edward Easton",
            author_email="*****@*****.**",
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            py_modules=["pytest_pyramid_server", "pyramid_server_test"],
            entry_points=entry_points,
        )
    )
    setup(**kwargs)
Esempio n. 4
0
install_requires = [
    'pytest',
    'pytest-shutil',
]

tests_require = []

entry_points = {
    'pytest11': [
        'svn_repo = pytest_svn',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_svn')
    kwargs.update(
        dict(
            name='pytest-svn',
            description='SVN repository fixture for py.test',
            platforms=['unix', 'linux'],
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            py_modules=['pytest_svn'],
            entry_points=entry_points,
        ))
    setup(**kwargs)
Esempio n. 5
0
]

install_requires = ['pytest',
                    'six',
                    ]

tests_require = ['mock',
                 'pytest-virtualenv',
                 ]

entry_points = {
    'pytest11': [
        'verbose-parametrize = pytest_verbose_parametrize',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_verbose_parametrize')
    kwargs.update(dict(
        name='pytest-verbose-parametrize',
        description='More descriptive output for parametrized py.test tests',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_verbose_parametrize'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 6
0
]

tests_require = [
    'pyramid-debugtoolbar',
]

entry_points = {
    'pytest11': [
        'pyramid_server = pytest_pyramid_server',
    ],
    'paste.app_factory': [
        'pyramid_server_test = pyramid_server_test:main',
    ],
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_pyramid_server')
    kwargs.update(
        dict(
            name='pytest-pyramid-server',
            description='Pyramid server fixture for py.test',
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            py_modules=['pytest_pyramid_server', 'pyramid_server_test'],
            entry_points=entry_points,
        ))
    setup(**kwargs)
Esempio n. 7
0
    "Topic :: Software Development :: User Interfaces",
    "Intended Audience :: Developers",
    "Operating System :: POSIX",
    "Programming Language :: Python :: 2",
    "Programming Language :: Python :: 2.7",
    "Programming Language :: Python :: 3.4",
]

install_requires = ["pytest", "pytest-server-fixtures", "pytest-shutil"]

tests_require = ["pytest-cov"]

entry_points = {"pytest11": ["qt = pytest_qt_app"]}

if __name__ == "__main__":
    kwargs = common_setup("pytest_qt_app")
    kwargs.update(
        dict(
            name="pytest-qt-app",
            description="QT app fixture for py.test",
            author="Edward Easton",
            author_email="*****@*****.**",
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            py_modules=["pytest_qt_app"],
            entry_points=entry_points,
        )
    )
    setup(**kwargs)
Esempio n. 8
0
install_requires = ['pytest',
                    'pytest-shutil',
                    'gitpython',
                    ]

tests_require = [
                 ]

entry_points = {
    'pytest11': [
        'git_repo = pytest_git',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_git')
    kwargs.update(dict(
        name='pytest-git',
        description='Git repository fixture for py.test',
        platforms=['unix', 'linux'],
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_git'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 9
0
install_requires = ['py',
                    'pytest',
                    'pytest-fixture-config',
                    'selenium',
                    ]

tests_require = [
                 ]

entry_points = {
    'pytest11': [
        'webdriver = pytest_webdriver',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_webdriver')
    kwargs.update(dict(
        name='pytest-webdriver',
        description='Selenium webdriver fixture for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_webdriver'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 10
0
install_requires = ['pytest-server-fixtures',
                    'pytest',
                    'devpi-server>=3.0.1',
                    'devpi-client',
                    'six',
                    ]

tests_require = []

entry_points = {
    'pytest11': [
        'devpi_server = pytest_devpi_server',
    ],
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_devpi_server')
    kwargs.update(dict(
        name='pytest-devpi-server',
        description='DevPI server fixture for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        packages=find_packages(exclude='tests'),
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 11
0
install_requires = ['pytest-fixture-config',
                    'pytest-shutil',
                    'pytest',
                    ]

tests_require = ['pytest-cov',
                 'mock'
                 ]

entry_points = {
    'pytest11': [
        'virtualenv = pytest_virtualenv',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_virtualenv')
    kwargs.update(dict(
        name='pytest-virtualenv',
        description='Virtualenv fixture for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_virtualenv'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 12
0
                    'six',
                    ]

tests_require = [
                 'pyramid-debugtoolbar',
                 ]

entry_points = {
    'pytest11': [
        'pyramid_server = pytest_pyramid_server',
    ],
    'paste.app_factory': [
        'pyramid_server_test = pyramid_server_test:main',
    ],
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_pyramid_server')
    kwargs.update(dict(
        name='pytest-pyramid-server',
        description='Pyramid server fixture for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_pyramid_server', 'pyramid_server_test'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 13
0
]

install_requires = ['pytest',
                    'pytest-server-fixtures',
                    'pytest-shutil',
                    ]

tests_require = ['pytest-cov'
                 ]

entry_points = {
    'pytest11': [
        'qt = pytest_qt_app',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_qt_app')
    kwargs.update(dict(
        name='pytest-qt-app',
        description='QT app fixture for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_qt_app'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 14
0
]

install_requires = ['pytest',
                    'pytest-shutil',
                    ]

tests_require = [
                 ]

entry_points = {
    'pytest11': [
        'svn_repo = pytest_svn',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_svn')
    kwargs.update(dict(
        name='pytest-svn',
        description='SVN repository fixture for py.test',
        platforms=['unix', 'linux'],
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_svn'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 15
0
install_requires = ['pytest-fixture-config',
                    'pytest-shutil',
                    'pytest',
                    ]

tests_require = [
                 'mock'
                 ]

entry_points = {
    'pytest11': [
        'virtualenv = pytest_virtualenv',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_virtualenv')
    kwargs.update(dict(
        name='pytest-virtualenv',
        description='Virtualenv fixture for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_virtualenv'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 16
0
                 'mock',
                 'psutil',
                 ]

entry_points = {
    'pytest11': [
        'httpd_server = pytest_server_fixtures.httpd',
        'jenkins_server = pytest_server_fixtures.jenkins',
        'mongodb_server = pytest_server_fixtures.mongo',
        'redis_server = pytest_server_fixtures.redis',
        'rethinkdb_server = pytest_server_fixtures.rethink',
        'xvfb_server = pytest_server_fixtures.xvfb',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_server_fixtures')
    kwargs.update(dict(
        name='pytest-server-fixtures',
        description='Extensible server fixures for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        extras_require=extras_require,
        tests_require=tests_require,
        packages=find_packages(exclude='tests'),
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 17
0
install_requires = [
    'pytest<4.0.0',
    'pytest-server-fixtures',
    'pytest-shutil',
]

tests_require = ['pytest-cov']

entry_points = {
    'pytest11': [
        'qt = pytest_qt_app',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_qt_app')
    kwargs.update(
        dict(
            name='pytest-qt-app',
            description='QT app fixture for py.test',
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            py_modules=['pytest_qt_app'],
            entry_points=entry_points,
        ))
    setup(**kwargs)
Esempio n. 18
0
install_requires = ['six',
                    'pytest',
                    'gprof2dot',
                    ]

tests_require = [
                 'pytest-virtualenv',
                 ]

entry_points = {
    'pytest11': [
        'profiling = pytest_profiling',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_profiling')
    kwargs.update(dict(
        name='pytest-profiling',
        description='Profiling plugin for py.test',
        author='Ed Catmur',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_profiling'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 19
0
entry_points = {
    'pytest11': [
        'httpd_server = pytest_server_fixtures.httpd',
        'jenkins_server = pytest_server_fixtures.jenkins',
        'mongodb_server = pytest_server_fixtures.mongo',
        'postgres_server = pytest_server_fixtures.postgres',
        'redis_server = pytest_server_fixtures.redis',
        'rethinkdb_server = pytest_server_fixtures.rethink',
        'xvfb_server = pytest_server_fixtures.xvfb',
        's3 = pytest_server_fixtures.s3',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_server_fixtures')
    kwargs.update(
        dict(
            name='pytest-server-fixtures',
            description='Extensible server fixures for py.test',
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            extras_require=extras_require,
            tests_require=tests_require,
            packages=find_packages(exclude='tests'),
            entry_points=entry_points,
        ))
    setup(**kwargs)
Esempio n. 20
0
install_requires = ['six',
                    'execnet',
                    'contextlib2',
                    'path.py',
                    'mock'
                    ]

tests_require = ['pytest',
                 ]

entry_points = {
    'pytest11': [
        'workspace = pytest_shutil.workspace',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_shutil')
    kwargs.update(dict(
        name='pytest-shutil',
        description='A goodie-bag of unix shell and environment tools for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        packages=find_packages(exclude='tests'),
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 21
0
    'Intended Audience :: Developers',
    'Operating System :: POSIX',
    'Programming Language :: Python :: 2',
    'Programming Language :: Python :: 2.7',
    'Programming Language :: Python :: 3',
    'Programming Language :: Python :: 3.5',
    'Programming Language :: Python :: 3.6',
    'Programming Language :: Python :: 3.7',
]

install_requires = ['pytest']

tests_require = [
    'six',
]

if __name__ == '__main__':
    kwargs = common_setup('pytest_fixture_config')
    kwargs.update(
        dict(
            name='pytest-fixture-config',
            description='Fixture configuration utils for py.test',
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            py_modules=['pytest_fixture_config'],
        ))
    setup(**kwargs)
Esempio n. 22
0
    'Development Status :: 5 - Production/Stable',
    'Topic :: Software Development :: Libraries',
    'Topic :: Software Development :: Testing',
    'Topic :: Utilities',
    'Intended Audience :: Developers',
    'Operating System :: POSIX',
    'Programming Language :: Python :: 2',
    'Programming Language :: Python :: 2.6',
    'Programming Language :: Python :: 2.7',
]

install_requires = ['pytest']

tests_require = ['pytest-cov',
                 'six',
                 ]

if __name__ == '__main__':
    kwargs = common_setup('pytest_fixture_config')
    kwargs.update(dict(
        name='pytest-fixture-config',
        description='Fixture configuration utils for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_fixture_config'],
    ))
    setup(**kwargs)
Esempio n. 23
0
install_requires = ['pytest',
                    'six',
                    ]

tests_require = ['mock',
                 'pytest-virtualenv',
                 'pytest-cov',
                 ]

entry_points = {
    'pytest11': [
        'verbose-parametrize = pytest_verbose_parametrize',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_verbose_parametrize')
    kwargs.update(dict(
        name='pytest-verbose-parametrize',
        description='More descriptive output for parametrized py.test tests',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_verbose_parametrize'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 24
0
]

install_requires = ['six', 'execnet', 'contextlib2', 'path.py', 'mock']

tests_require = [
    'pytest',
]

entry_points = {
    'pytest11': [
        'workspace = pytest_shutil.workspace',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_shutil')
    kwargs.update(
        dict(
            name='pytest-shutil',
            description=
            'A goodie-bag of unix shell and environment tools for py.test',
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            packages=find_packages(exclude='tests'),
            entry_points=entry_points,
        ))
    setup(**kwargs)
Esempio n. 25
0
    'pytest-server-fixtures',
    'pytest',
    'devpi-server>=3.0.1',
    'devpi-client',
    'six',
]

tests_require = []

entry_points = {
    'pytest11': [
        'devpi_server = _pytest_devpi_server',
    ],
}

if __name__ == '__main__':
    kwargs = common_setup('_pytest_devpi_server')
    kwargs.update(
        dict(
            name='pytest-devpi-server',
            description='DevPI server fixture for py.test',
            author='Edward Easton',
            author_email='*****@*****.**',
            classifiers=classifiers,
            install_requires=install_requires,
            tests_require=tests_require,
            packages=find_packages(exclude='tests'),
            entry_points=entry_points,
        ))
    setup(**kwargs)
Esempio n. 26
0
    'Programming Language :: Python :: 3.7',
]

install_requires = ['six',
                    'pytest',
                    'pytest-server-fixtures'
                    ]

tests_require = []

entry_points = {
    'pytest11': [
        'listener = pytest_listener',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_listener')
    kwargs.update(dict(
        name='pytest-listener',
        description='A simple network listener',
        author='Tim Couper',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        packages=find_packages(exclude='tests'),
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 27
0
install_requires = ['py',
                    'pytest',
                    'pytest-fixture-config',
                    'selenium',
                    ]

tests_require = ['mock',
                 ]

entry_points = {
    'pytest11': [
        'webdriver = pytest_webdriver',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_webdriver')
    kwargs.update(dict(
        name='pytest-webdriver',
        description='Selenium webdriver fixture for py.test',
        author='Edward Easton',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        py_modules=['pytest_webdriver'],
        entry_points=entry_points,
    ))
    setup(**kwargs)
Esempio n. 28
0
    'Programming Language :: Python :: 2.6',
    'Programming Language :: Python :: 2.7',
]

install_requires = ['six',
                    'pytest']

tests_require = ['pytest-cov',
                 ]

entry_points = {
    'pytest11': [
        'listener = pytest_listener',
    ]
}

if __name__ == '__main__':
    kwargs = common_setup('pytest_listener')
    kwargs.update(dict(
        name='pytest-listener',
        description='A simple network listener',
        author='Tim Couper',
        author_email='*****@*****.**',
        classifiers=classifiers,
        install_requires=install_requires,
        tests_require=tests_require,
        packages=find_packages(exclude='tests'),
        entry_points=entry_points,
    ))
    setup(**kwargs)