#!/usr/bin/env python
from __future__ import print_function, division, absolute_import
import os
import inspect
import pytest_helper
import set_package_attribute

if __name__ == "__main__":
    #pytest_helper.init(set_package=True) # Finds no tests when this is set!
    pytest_helper.init()
    import sys
    #pytest_helper.script_run(self_test=True)
    pytest_helper.script_run(self_test="test_in_package_subdir", pyargs=True)

pytest_helper.sys_path("../../..")
from package_dir.package_subdir import subdir_dummy_module

pytest_helper.autoimport()
def test_running_test_in_package_subdir():
    assert True

#!/usr/bin/env python
from __future__ import print_function, division, absolute_import
import os
import inspect
import pytest_helper
import set_package_attribute

if __name__ == "__main__":
    #pytest_helper.init(set_package=True) # Finds no tests when this is set!
    pytest_helper.init()
    import sys
    #pytest_helper.script_run(self_test=True)
    pytest_helper.script_run(self_test="test_in_package_subdir", pyargs=True)

pytest_helper.sys_path("../../..")
from package_dir.package_subdir import subdir_dummy_module

pytest_helper.autoimport()


def test_running_test_in_package_subdir():
    assert True
Ejemplo n.º 3
0
import pytest_helper

# Regular program code goes here.

testing_var = "foo"

# Test running below, but only when the module is invoked as a script.

if __name__ == "__main__":  # This guard conditional is optional.
    pytest_helper.script_run(self_test=True, pytest_args="-v")

pytest_helper.autoimport()  # Do some basic imports automatically.


def my_setup():  # Could be a pytest fixture instead of a regular function.
    setup_var = "bar"
    locals_to_globals(
        clear=True)  # Copies setup_var to the module's global namespace.


def test_var_values():
    my_setup()
    assert testing_var == "foo"  # Set in the regular code above.
    assert setup_var == "bar"  # Read from the global namespace.
    test_dict = {}
    with raises(KeyError):  # Pytest function raises was autoimported.
        test_dict[5]
Ejemplo n.º 4
0
import pytest_helper

# Regular program code goes here.

testing_var = "foo"

# Test running below, but only when the module is invoked as a script.

if __name__ == "__main__":  # This guard conditional is optional.
    pytest_helper.script_run(self_test=True, pytest_args="-v")

pytest_helper.autoimport()  # Do some basic imports automatically.


def my_setup():  # Could be a pytest fixture instead of a regular function.
    setup_var = "bar"
    locals_to_globals(clear=True)  # Copies setup_var to the module's global namespace.


def test_var_values():
    my_setup()
    assert testing_var == "foo"  # Set in the regular code above.
    assert setup_var == "bar"  # Read from the global namespace.
    test_dict = {}
    with raises(KeyError):  # Pytest function raises was autoimported.
        test_dict[5]