pytest.mark.cxfreeze

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

4 Examples 7

Example 1

Project: esky Source File: test_esky.py
        @pytest.mark.cxfreeze
        def test_esky_cxfreeze_nocustomchainload(self):
            with setenv("ESKY_NO_CUSTOM_CHAINLOAD","1"):
               bscode = ["_chainload = _orig_chainload",None]
               self._run_eskytester({"bdist_esky":{"freezer_module":"cxfreeze",
                                                   "bootstrap_code":bscode}})

Example 2

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

Example 3

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

Example 4

Project: esky Source File: test_esky.py
        @pytest.mark.cxfreeze
        def test_esky_cxfreeze_pypy(self):
            with setenv("ESKY_NO_CUSTOM_CHAINLOAD","1"):
              self._run_eskytester({"bdist_esky":{"freezer_module":"cxfreeze",
                                                 "compile_bootstrap_exes":1}})