From 3ba63128da2cb2b8cc5991e5f2c949096f99d0df Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 18 Jun 2015 20:44:22 +0200 Subject: [PATCH] Add a smoke-frozen testenv. See #770. --- .appveyor.yml | 1 + tox.ini | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index d2488cfe4..03374aedd 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -11,6 +11,7 @@ install: test_script: - C:\Python34\Scripts\tox -e smoke + - C:\Python34\Scripts\tox -e smoke-frozen - C:\Python34\Scripts\tox -e unittests - C:\Python34\Scripts\tox -e pyflakes - C:\Python34\Scripts\tox -e pylint diff --git a/tox.ini b/tox.ini index 574e0a941..2a502f715 100644 --- a/tox.ini +++ b/tox.ini @@ -146,6 +146,18 @@ commands = {envpython} scripts/link_pyqt.py --tox {envdir} {envpython} -m qutebrowser --no-err-windows --nowindow --temp-basedir about:blank ":later 500 quit" +[testenv:smoke-frozen] +setenv = {[testenv:smoke]setenv} +passenv = {[testenv:smoke]passenv} +skip_install = true +deps = + {[testenv:smoke]deps} + cx_Freeze==4.3.4 +commands = + {envpython} scripts/link_pyqt.py --tox {envdir} + {envpython} scripts/freeze.py build_exe -b {envdir}/build + {envdir}/build/qutebrowser --no-err-windows --nowindow --temp-basedir about:blank ":later 500 quit" + [pytest] norecursedirs = .tox .venv markers =