1. 18 4月, 2018 2 次提交
    • C
      Travis-CI: skip tests that are time/resource sensitive · 822095d5
      Cleber Rosa 提交于
      And that have been causing failures on Travis jobs, due to limited
      on unreliable amount of resources present.
      
      This is the full list of tests that won't be run anymore on Travis,
      only on `make check-full`:
      
        selftests.functional.test_basic.RunnerOperationTest.test_early_latest_result
        selftests.functional.test_basic.RunnerSimpleTest.test_kill_stopped_sleep
        selftests.functional.test_interrupt.InterruptTest.test_well_behaved_sigint
        selftests.functional.test_interrupt.InterruptTest.test_well_behaved_sigterm
        selftests.functional.test_loader.LoaderTestFunctional.test_simple_using_main
        selftests.functional.test_loader.LoaderTestFunctional.test_sleep_a_lot
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      822095d5
    • C
      a847f3fd
  2. 16 4月, 2018 2 次提交
  3. 14 4月, 2018 3 次提交
  4. 13 4月, 2018 3 次提交
  5. 11 4月, 2018 3 次提交
  6. 10 4月, 2018 5 次提交
  7. 05 4月, 2018 3 次提交
  8. 04 4月, 2018 5 次提交
  9. 03 4月, 2018 1 次提交
  10. 28 3月, 2018 7 次提交
  11. 27 3月, 2018 5 次提交
  12. 26 3月, 2018 1 次提交
    • C
      avocado.utils.process: attempt first to decode bytes into text · 79d99673
      Cleber Rosa 提交于
      And only if the method is not available, attempt to fallback to
      the stdout itself if it is a string.
      
      Before 30617c1e, the following kind of check was done:
      
         >>> type(bytes('foo')) in string_types
         False
      
      And after it, the check was changed to:
      
         >>> isinstance(bytes('foo'), string_types)
         True
      
      That made the bytes decoding not to be performed at times.  While the
      new check is correct, we should favor the attempt to decode, and
      only if not available, fallback to the original stdout if it looks
      like a string.
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      79d99673