Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/appstore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Posselt <BernhardPosselt@users.noreply.github.com>2017-07-22 17:57:02 +0300
committerGitHub <noreply@github.com>2017-07-22 17:57:02 +0300
commitc5cb2839432019b7eef070056f3cdc109ed470e4 (patch)
tree967b9320d2055beda42e124ac3f29c65ab0810db /scripts
parenta6ab7a6e115e15fe730866b4a7945d3ef661944c (diff)
Add the first frontend test (#500)
* add the first frontend test * install gecko driver * fix tar * include all fixtures in tests * wait longer * wait even longer * update pg driver
Diffstat (limited to 'scripts')
-rw-r--r--scripts/development/settings/base.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/development/settings/base.py b/scripts/development/settings/base.py
index 455b40f28a..7a03130be4 100644
--- a/scripts/development/settings/base.py
+++ b/scripts/development/settings/base.py
@@ -11,3 +11,7 @@ INSTALLED_APPS.append('debug_toolbar')
MIDDLEWARE.append('debug_toolbar.middleware.DebugToolbarMiddleware')
INTERNAL_IPS = ('127.0.0.1',)
VALIDATE_CERTIFICATES = False
+
+FIXTURE_DIRS = (
+ join(BASE_DIR, 'nextcloudappstore/core/tests/e2e/fixtures'),
+)