pytest.mark.py2app

Here are the examples of the python api pytest.mark.py2app taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

Example 1

Project: esky Source File: test_esky.py
    @pytest.mark.py2app
    def test_esky_py2app(self):
        self._run_eskytester({"bdist_esky":{"freezer_module":"py2app"}})

Example 2

Project: esky Source File: test_esky.py
        @pytest.mark.py2app
        def test_esky_py2app_needsroot(self):
            with setenv("ESKY_NEEDSROOT","1"):
                self._run_eskytester({"bdist_esky":{"freezer_module":"py2app"}})

Example 3

Project: esky Source File: test_esky.py
        @pytest.mark.py2app
        def test_esky_py2app_pypy(self):
            self._run_eskytester({"bdist_esky":{"freezer_module":"py2app",
                                                "compile_bootstrap_exes":1}})