Merge remote-tracking branch 'origin/pr/242'

* origin/pr/242:
  Drop async future check with python3 version
  tracis-ci: add support for fc29 dom0
Este commit está contenido en:
Marek Marczykowski-Górecki 2018-11-24 14:43:43 +01:00
commit d1e20e5178
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 063938BA42CFA724
Se han modificado 2 ficheros con 1 adiciones y 6 borrados

Ver fichero

@ -12,6 +12,7 @@ script:
- ~/qubes-builder/scripts/travis-build
env:
- DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
- DIST_DOM0=fc29 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
after_success:
- codecov -F unittests

Ver fichero

@ -7,12 +7,6 @@ import sys
QUBESD_SOCK = '/var/run/qubesd.sock'
try:
asyncio.ensure_future
except AttributeError:
# pylint: disable=no-member
asyncio.ensure_future = asyncio.async
parser = argparse.ArgumentParser(
description='low-level qubesd interrogation tool')