pytest.mark.bbfreeze

Here are the examples of the python api pytest.mark.bbfreeze 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.bbfreeze
        def test_esky_bbfreeze_nocustomchainload(self):
            with setenv("ESKY_NO_CUSTOM_CHAINLOAD","1"):
               bscode = "_chainload = _orig_chainload\nbootstrap()"
               self._run_eskytester({"bdist_esky":{"freezer_module":"bbfreeze",
                                                   "bootstrap_code":bscode}})

Example 2

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

Example 3

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

Example 4

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