def test_Racinevide(self): os.chdir(str(RepertoireXe)) print("test_Racinevide") print(str(RepertoireXe)) print(os.getcwd()) opt = f" --valide -r --win64 Test_tst\Test_tst.cbproj" rxbuild(options=opt, lignecde=False)
import sys import pathlib # If we are running from a wheel, add the wheel to sys.path # This allows the usage python rxbuilder * if __package__ == '': # first dirname call strips of '/__main__.py', second strips off '/pip' # Resulting path is the name of the wheel itself # Add that to sys.path so we can import pip path = pathlib.Path(__file__).resolve().parent.parent sys.path.insert(0, str(path)) from rxbuilder import rxbuild else: from . import rxbuild if __name__ == '__main__': sys.exit(rxbuild())
def test_vide(self): os.chdir(str(RepertoireXe)) rxbuild(lignecde=False)
def test_LancementTest(self): opt = f" --build --test --valide -r --win64 {GroupProjet}" rxbuild(options=opt, lignecde=False)
def test_Build_release_win64(self): opt = f" -r --win64 {GroupProjet}" rxbuild(options=opt, lignecde=False)
def test_BuildUnInstall(self): opt = f" -u -r {PackageIdeProjet}" rxbuild(options=opt, lignecde=False)
def test_BuildLib(self): opt = f"--build {LibProjet}" rxbuild(options=opt, lignecde=False)
def test_Build_Win32Release(self): opt = f"--build --win64 -r {LibProjet}" rxbuild(options=opt, lignecde=False)
def test_CleanGroup(self): opt = f" --clean {GroupProjet}" rxbuild(options=opt, lignecde=False)
def test_cleanAll(self): opt = f"--clean {LibProjet}" rxbuild(options=opt, lignecde=False)
def test_cleanRelease(self): opt = f"--clean -r {LibProjet}" rxbuild(options=opt, lignecde=False)