diff --git a/.gitignore b/.gitignore index 7eeacbf..cd642e6 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,10 @@ __pycache__ # Coverage .coverage + +# Build files +build/ +dist/ + +# git .orig files +*.orig diff --git a/README.rst b/README.rst index 547915b..4a10b3d 100644 --- a/README.rst +++ b/README.rst @@ -54,5 +54,5 @@ This project depends on: Overview -------- -.. image:: doc/reports_screenshot.png +.. image:: https://github.com/spyder-ide/spyder-reports/blob/master/doc/reports_screenshot.png :alt: Reports Screenshot diff --git a/circle.yml b/circle.yml index d2f198c..359fd78 100644 --- a/circle.yml +++ b/circle.yml @@ -8,8 +8,6 @@ machine: # python3.5 conda, pweave 0.2.5 # python2.7 conda, pweave 0.2.5 PY_VERSIONS: "3.6 3.5 2.7" - # For Coveralls - COVERALLS_REPO_TOKEN: Itl2uptQrhv57IMJfWwp5ZuAE4yKPgNtX # Environment variables used by astropy helpers TRAVIS_OS_NAME: "linux" CONDA_DEPENDENCIES_FLAGS: "--quiet" diff --git a/setup.py b/setup.py index d0a9144..c97b708 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def get_description(): return data -REQUIREMENTS = ['spyder>=3.2.0', 'pweave'] +REQUIREMENTS = ['spyder>=3.2.0', 'pweave', 'matplotlib'] setup( diff --git a/spyder_reports/tests/test_plugin.py b/spyder_reports/tests/test_plugin.py index b916ace..a099489 100644 --- a/spyder_reports/tests/test_plugin.py +++ b/spyder_reports/tests/test_plugin.py @@ -69,7 +69,7 @@ def add_dockwidget(*args): reports.main.add_dockwidget = add_dockwidget - with qtbot.waitSignal(reports.sig_render_finished, timeout=6000) as sig: + with qtbot.waitSignal(reports.sig_render_finished, timeout=10000) as sig: reports.register_plugin() ok, filename, error = sig.args