1. 08 4月, 2015 1 次提交
    • R
      avocado.loader: Introduce multiple tests. · a0197f21
      Rudá Moura 提交于
      Introduce multiple test methods defined in Avocado Test class.
      The tests looks like the one of unittest module.
      
      The test methods are defined when you create test<something> methods,
      inside the test class. Each test methods becomes a test case unit
      to execute.
      
      Example:
      
      class MyTest(avocado.test.Test):
          def test_eone(self)...
          def test_two(self)...
          def testAnotherone(self)...
      Signed-off-by: NRudá Moura <rmoura@redhat.com>
      a0197f21
  2. 07 4月, 2015 2 次提交
  3. 03 4月, 2015 1 次提交
  4. 01 4月, 2015 2 次提交
  5. 31 3月, 2015 4 次提交
  6. 30 3月, 2015 6 次提交
  7. 29 3月, 2015 1 次提交
  8. 28 3月, 2015 6 次提交
  9. 27 3月, 2015 14 次提交
  10. 26 3月, 2015 1 次提交
    • L
      avocado.job: Refactor how multiplexation happens · ef617ec1
      Lukáš Doktor 提交于
      This pull request changes the way multiplexation is used.
      
      1. tests are discovered by test_loader.discover()
      2. multiplexer is initialized
      3. suite is executed with initialized multiplexer class
      4. each test works as template and iterates over multiplexer variants
      
      Additionaly support for multiplex_files overriding was removed as I
      haven't found any users of this API.
      Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
      ef617ec1
  11. 25 3月, 2015 2 次提交