From da5da356614420b29b385211ca7ca157cbdd6afe Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Tue, 14 Oct 2014 08:39:31 +0200 Subject: [PATCH] Packaging dry run tests --- tests/test_packaging.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test_packaging.py b/tests/test_packaging.py index 5b5fd74..3c9e32c 100644 --- a/tests/test_packaging.py +++ b/tests/test_packaging.py @@ -3,11 +3,14 @@ from . import context, setup, teardown +def test_build_package(): + packaging.build_package(context) + def test_install_package(): - pass + packaging.install_package(context) def test_upload_package(): - pass + packaging.upload_package(context) def test_install_from_pypi(): - pass + packaging.install_from_pypi(context)