Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


    mvn -Pdeveloper -Dsimulator clean install -Dmaven.test.skip=true
    mvn -Pdeveloper -pl developer -Ddeploydb
    mvn -Pdeveloper -pl developer -Ddeploydb-simulator
    mvn -pl client jetty:run -Dsimulator

Step2: Create the Data Center using marvin by running the command below:

    Setup Marvin (if not done already): python tools/marvin/setup.py install

    (Requires python-dev or python-devel)


    python tools/marvin/marvin/deployDataCenter.py -i setup/dev/advanced.cfg

Step3:  Now run "selfservice" tests on the created Data Center, using nose command below. Before running tests, mention a new  log folder path for "LogFolderPath", under config file ( setup/dev/advanced.cfg ).

  • For running all test suites under a given directory:

    nosetests-2.7 --with-marvin --marvin-config=<path_to_marvin_config>   --with-xunit  --xunit-file=<path_to_out_xml>  -w <path_to_test_cases_dir> -a tags=advanced,required_hardware=false  --zone=<zone_name>  --hypervisor=simulator

...