Commit Graph

16 Commits

Author SHA1 Message Date
Andreas Jaeger bf68ba250c Avoid tox-install.sh
Instead of using tox-install.sh, we can install horizon and neutron
now directly from pypi - or use the current branch in CI system using
tox-siblings.

Update tox.ini for this change.
horizon is already part of requirements file.

Change-Id: Ia7394a1af8fb1cf5752ace4963c328c32b92841b
2019-06-06 10:09:46 +02:00
YAMAMOTO Takashi fb1a2741a1 Update URLs after opendev.org migration
Change-Id: I079f2a12d701c17b874568a7791d24ffaa09bf1a
2019-04-26 22:06:17 +09:00
OpenDev Sysadmins 97b7e91388 OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:51:57 +00:00
Zuul 34513aec89 Merge "Various fixes and updates" 2019-04-10 02:32:57 +00:00
YAMAMOTO Takashi b085767b5a Various fixes and updates
- Remove redundant test-requirements and require horizon
  Note: This implies newer versions of django

- Use openstack_dashboard.test.helpers.TestCase
  To fix the following error with py3.
  TypeError: unhashable type: 'TestNeutron_taas_dashboard'

- Update uses of urlresolvers
  See: https://review.openstack.org/#/c/528497/

- Fix ImproperlyConfigured
  See: https://review.openstack.org/#/c/527323/

Change-Id: I60e983baff48cf5bab73c5e89f03b6984ef62417
2019-04-04 14:45:16 +09:00
Ian Wienand 76b9f6a4b4 Replace openstack.org git:// URLs with https://
This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.

This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.

This update should result in no functional change.

For more information see the thread at

 http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html

Change-Id: Ibe016f654a2913fb55ee3cda54d93b5898ef7cc8
2019-03-24 20:36:15 +00:00
Nguyen Van Trung 7e716495bf Drop django_openstack_auth from requirements.txt
django_openstack_auth has been merged into horizon tree
as an effort of blueprint merge-openstack-auth.
There is no need to depend on django_openstack_auth any more.

Change-Id: Ic093b354cf330355f13ddb4f0e0ce97415b663ca
2017-12-25 15:35:26 +00:00
Andreas Jaeger 1134768adc Align tox_install.sh with other projects
The tox_install.sh here behaves a bit differently than the others, which
is causing some problems when trying to rework some of the shared gate jobs.

Align it to the form used in other repos.

Change-Id: I58d6a613aa959307bc82ac9a7ce2bce4c427844e
2017-11-22 19:48:28 +01:00
YAMAMOTO Takashi 98badf20b9 devstack: Remove a write-only variable
Change-Id: I4a04da67081961514d52b447dac4ddb5f16868bc
2017-08-03 12:29:46 +09:00
YAMAMOTO Takashi 0dfe833995 devstack: Remove a stale comment
It seems like a leftover from copy-and-paste.

Change-Id: I7a1c422a579eb8c3e53acdf9c1989f5dd7aba03b
2017-08-03 12:29:46 +09:00
YAMAMOTO Takashi b688c7e8cc tox_install: Don't leave IFS set
When running "tox -e docs" in my environment, git clone fails with
"Too many arguments."  It seems ":" in "https://" is affected by IFS.

1. In tox_install.sh, IFS is set to ":". It affects the current
  execution environment and can have undesirable side effects later.
  It's safer to restore it.  (This commit fixes this.)

2. Otoh, the particular symptom above seems like a bug in a version
  of bash I happen to have.

  bash-3.2$ bash --version
  GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin14)
  Copyright (C) 2007 Free Software Foundation, Inc.
  bash-3.2$ IFS=:
  bash-3.2$ echo a:b
  a:b
  bash-3.2$ echo a:b$x
  a b
  bash-3.2$

Closes-Bug: #1708147
Change-Id: Id762dd3dcef13f8bf2258e0dc706721ea8ba886c
2017-08-03 12:29:43 +09:00
YAMAMOTO Takashi eeaa349610 Change the way to install horizon
This fixes the following error during ./stack.sh.

    Could not satisfy constraints for 'horizon': installation
    from path or url cannot be constrained to a version

Also, having it in (test-)requirements.txt doesn't work well
for Depends-On etc.

tox_install.sh was copied from neutron-vpnaas-dashboard.

Closes-Bug: #1708124
Change-Id: Iafd79e0b7db437863b65af6b94ccf74632e537be
2017-08-02 20:26:54 +09:00
YAMAMOTO Takashi b31bea16bc README.rst: Fix the name for enable_plugin
It should match NEUTRON_TAAS_DASHBOARD_DIR in devstask/settings.

Closes-Bug: #1708119
Change-Id: I497965abaaf6edc34e8694c05e6e9e5cdc33fa03
2017-08-02 20:26:54 +09:00
YAMAMOTO Takashi da8c4e4caf Use the new way to reference views
See https://docs.djangoproject.com/en/1.9/releases/1.8/#django-conf-urls-patterns

Closes-Bug: #1708118

----------------------------------------
This commit includes the following unrelated change
to pass the gate.

docs: Fix an import error

version.py was copied from neutron-vpnaas-dashboard
and modified a bit.

Closes-Bug: #1708145
Change-Id: I475a808cd4c7e940aee5306d7c33a1c9c16746c3
----------------------------------------

Change-Id: I0077105a13c7b6dd2c49fae17784dffb54e55cd9
2017-08-02 20:25:58 +09:00
Kazuhiro Suzuki f58397e151 Modify ./README.rst 2017-06-13 09:05:14 +09:00
Kazuhiro Suzuki 8005e175c8 Initial Commit. 2017-06-12 20:02:55 +09:00