Ejemplo n.º 1
0
 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)
Ejemplo n.º 2
0

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())
Ejemplo n.º 3
0
 def test_vide(self):
     os.chdir(str(RepertoireXe))
     rxbuild(lignecde=False)
Ejemplo n.º 4
0
 def test_LancementTest(self):
     opt = f" --build --test  --valide -r --win64 {GroupProjet}"
     rxbuild(options=opt, lignecde=False)
Ejemplo n.º 5
0
 def test_Build_release_win64(self):
     opt = f"  -r --win64 {GroupProjet}"
     rxbuild(options=opt, lignecde=False)
Ejemplo n.º 6
0
 def test_BuildUnInstall(self):
     opt = f"  -u -r {PackageIdeProjet}"
     rxbuild(options=opt, lignecde=False)
Ejemplo n.º 7
0
 def test_BuildLib(self):
     opt = f"--build  {LibProjet}"
     rxbuild(options=opt, lignecde=False)
Ejemplo n.º 8
0
 def test_Build_Win32Release(self):
     opt = f"--build --win64 -r {LibProjet}"
     rxbuild(options=opt, lignecde=False)
Ejemplo n.º 9
0
 def test_CleanGroup(self):
     opt = f" --clean  {GroupProjet}"
     rxbuild(options=opt, lignecde=False)
Ejemplo n.º 10
0
 def test_cleanAll(self):
     opt = f"--clean  {LibProjet}"
     rxbuild(options=opt, lignecde=False)
Ejemplo n.º 11
0
 def test_cleanRelease(self):
     opt = f"--clean -r {LibProjet}"
     rxbuild(options=opt, lignecde=False)