1. 22 Jun, 2021 3 commits
  2. 18 Jun, 2021 1 commit
  3. 16 Jun, 2021 1 commit
  4. 15 Jun, 2021 1 commit
  5. 24 Sep, 2020 2 commits
    • OpenStack Release Bot's avatar
      Update TOX_CONSTRAINTS_FILE for stable/victoria · 775bc73c
      OpenStack Release Bot authored
      Update the URL to the upper-constraints file to point to the redirect
      rule on releases.openstack.org so that anyone working on this branch
      will switch to the correct upper-constraints list automatically when
      the requirements repository branches.
      
      Until the requirements repository has as stable/victoria branch, tests will
      continue to use the upper-constraints list on master.
      
      Change-Id: I0e67ef9e910d7769c426f93aba760eb6c761f58d
      775bc73c
    • OpenStack Release Bot's avatar
      Update .gitreview for stable/victoria · 275e7269
      OpenStack Release Bot authored
      Change-Id: Ica231a72c068e69f8aaee3936de12160309cb9ee
      275e7269
  6. 23 Sep, 2020 1 commit
  7. 22 Sep, 2020 1 commit
  8. 21 Sep, 2020 1 commit
  9. 10 Sep, 2020 1 commit
  10. 09 Sep, 2020 1 commit
    • Victoria Martinez de la Cruz's avatar
      User messages panel · 62bea909
      Victoria Martinez de la Cruz authored
      Addds user messages panel for project and admin
      views. This feature was introduced in Manila API v2.37.
      
      Change-Id: Iad130b642e33c08e6d41021a378893a55f4cfec5
      Implements: blueprint ui-user-messages
      62bea909
  11. 04 Sep, 2020 1 commit
    • Akihiro Motoki's avatar
      tox: specify ignore_basepython_conflict · bbfc3f0a
      Akihiro Motoki authored
      We specify "basepython = python3" in [testenv] in tox.ini.
      Without ignore_basepython_conflict = true, an interpreter named 'python3'
      is looked for even for tox envs like py36, py37, py38.
      As a result, for example, py38 job will be run against python 3.6
      on ubuntu-bionic where python3 is an alias for python3.6.
      This issue can be addressed by "ignore_basepython_conflict = true".
      
      Change-Id: If8c90c66adbd6ff34ad6aedd373455a34ec73930
      bbfc3f0a
  12. 02 Aug, 2020 1 commit
    • Ghanshyam Mann's avatar
      [goal] Migrate testing to ubuntu focal · 5831bc91
      Ghanshyam Mann authored
      As per victoria cycle testing runtime and community goal[1]
      we need to migrate upstream CI/CD to Ubuntu Focal(20.04).
      
      Fixing:
      - bug#1886298
      Bump the lower constraints for required deps which added python3.8 support
      in their later version.
      
      Story: #2007865
      Task: #40194
      
      Closes-Bug: #1886298
      
      Change-Id: Iecdea43886a2bfb232d7560914969f8a5cd485bd
      5831bc91
  13. 17 Jul, 2020 1 commit
  14. 16 Jul, 2020 1 commit
    • Goutham Pacha Ravi's avatar
      Drop legacy dsvm job & change zuulv3 integration job · 1f0754ff
      Goutham Pacha Ravi authored
      
      
      The legacy job in this repository was just
      setting up devstack with manila-ui enabled
      and doing nothing else.
      
      We added an integration gate job a couple of
      releases ago that does exactly what the above
      job does, and goes a step beyond by executing
      tests that check whether manila-ui is working.
      
      We can make this job use the fake driver from
      manila so we can add more interesting and useful
      test cases without having to worry about any
      lacking capabilities.
      
      Also make this integration job voting.
      
      Change-Id: Ibf35d7196d83e1018881776110ce173e68cf8286
      Signed-off-by: default avatarGoutham Pacha Ravi <gouthampravi@gmail.com>
      1f0754ff
  15. 21 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Switch to newer openstackdocstheme and reno versions · 62031d8a
      Andreas Jaeger authored
      Switch to openstackdocstheme 2.2.1 and reno 3.1.0 versions. Using
      these versions will allow especially:
      * Linking from HTML to PDF document
      * Allow parallel building of documents
      * Fix some rendering problems
      
      Update Sphinx version as well.
      
      Set openstackdocs_pdf_link to link to PDF file. Note that
      the link to the published document only works on docs.openstack.org
      where the PDF file is placed in the top-level html directory. The
      site-preview places the PDF in a pdf directory.
      
      Disable openstackdocs_auto_name to use 'project' variable as name.
      
      Change pygments_style to 'native' since old theme version always used
      'native' and the theme now respects the setting and using 'sphinx' can
      lead to some strange rendering.
      
      Remove docs requirements from lower-constraints, they are not needed
      during install or test but only for docs building.
      
      openstackdocstheme renames some variables, so follow the renames
      before the next release removes them. A couple of variables are also
      not needed anymore, remove them.
      
      See also
      http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html
      
      Change-Id: Ic888f31814431683d8cd71e1ab25c0dc63bcc8ef
      62031d8a
  16. 13 May, 2020 1 commit
    • Ghanshyam Mann's avatar
      Fix hacking min version to 3.0.1 · 3f03e072
      Ghanshyam Mann authored
      flake8 new release 3.8.0 added new checks and gate pep8
      job start failing. hacking 3.0.1 fix the pinning of flake8 to
      avoid bringing in a new version with new checks.
      
      Though it is fixed in latest hacking but 2.0 and 3.0 has cap for
      flake8 as <4.0.0 which mean flake8 new version 3.9.0 can also
      break the pep8 job if new check are added.
      
      To avoid similar gate break in future, we need to bump the hacking min
      version.
      
      - http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014828.html
      
      Change-Id: I3b9f61ccb0607acbd98cb3f09e8f622656ac8351
      3f03e072
  17. 05 May, 2020 3 commits
  18. 28 Apr, 2020 3 commits
  19. 27 Apr, 2020 4 commits
  20. 26 Apr, 2020 1 commit
  21. 23 Apr, 2020 1 commit
  22. 19 Apr, 2020 1 commit
  23. 17 Apr, 2020 2 commits
    • Goutham Pacha Ravi's avatar
      Remove mock from requirements · 3382ce81
      Goutham Pacha Ravi authored
      We don't use this third party lib anymore,
      since https://review.opendev.org/#/c/717325/
      
      
      
      Change-Id: Ibe4423cf3893981128addbf4fa31ba9003a7e968
      Signed-off-by: default avatarGoutham Pacha Ravi <gouthampravi@gmail.com>
      3382ce81
    • Andreas Jaeger's avatar
      Cleanup py27 support · 4d19dcd9
      Andreas Jaeger authored
      This repo is now testing only with Python 3, so let's make
      a few cleanups:
      - Remove python 2.7 stanza from setup.py
      - Add requires on python >= 3.6 to setup.cfg so that pypi and pip
        know about the requirement
      - Remove obsolete sections from setup.cfg
      - Update classifiers
      - Update requirements, no need for python_version anymore
      - Switch to using sphinx-build
      - Use newer openstackdocstheme and Sphinx versions
      - Cleanup */source/conf.py to remove now obsolete content.
      - Remove Babel from requirements, it's not needed for running.
      - Update lower-constraints for osprofiler as required by
        other dependencies.
      
      Change-Id: I84ec7cae5b051bb9c69969d8ccaa28b053914840
      4d19dcd9
  24. 16 Apr, 2020 1 commit
  25. 15 Apr, 2020 3 commits
  26. 14 Apr, 2020 1 commit
  27. 11 Apr, 2020 1 commit