1. 28 Jul, 2021 1 commit
  2. 21 Jul, 2021 1 commit
  3. 01 Jun, 2021 1 commit
  4. 31 May, 2021 1 commit
  5. 19 May, 2021 1 commit
    • manchandavishal's avatar
      Drop horizon-nodejs10-jobs template · b31cd831
      manchandavishal authored
      As we already added horizon-nodejs14-jobs template in this plugin
      and nodejs14 jobs running fine. So let's drop horizon-nodejs10-jobs
      template because nodejs10 is already EOL.
      
      Change-Id: I11176ef54ca25b130bc2c1c86b8458cbf960312f
      b31cd831
  6. 27 Apr, 2021 1 commit
  7. 26 Mar, 2021 2 commits
  8. 18 Mar, 2021 1 commit
  9. 03 Mar, 2021 1 commit
  10. 16 Dec, 2020 1 commit
    • manchandavishal's avatar
      Run npm nodejs job with Firefox browser · 934c8e1b
      manchandavishal authored
      This patch update browser from Chrome to Firefox
      in karma.conf.js because nodejs fails with Chrome
      browser as not able to access some URL.
      So let's switch to Firefox browser now then we can
      use Chrome browser in future once this issue is resolved.
      
      Change-Id: I33b911143208fb63548d776cbf3dc4249d4e3394
      934c8e1b
  11. 05 Oct, 2020 1 commit
  12. 28 Sep, 2020 2 commits
  13. 23 Sep, 2020 1 commit
  14. 02 Sep, 2020 1 commit
    • Pavlo Shchelokovskyy's avatar
      Move image_field_data method in-tree · 953369c8
      Pavlo Shchelokovskyy authored
      this was removed in Horizon as 'not needed' in
      26eebd4abbbabc1475bae61c51d1cfcf14dba770
      however it is used to form a hint for glance.image constraint
      in heat-dashboard.
      
      Just copy-paste the method as it existed in horizon with minimal
      adaptations.
      
      Change-Id: I23fd3f45f0ce5b67691991336e727c377ca36281
      953369c8
  15. 04 Aug, 2020 1 commit
  16. 09 Jun, 2020 2 commits
  17. 22 May, 2020 1 commit
  18. 21 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Switch to newer openstackdocstheme and reno versions · 40df15a4
      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.
      
      Set openstackdocs_auto_name to use 'project' 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.
      
      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: I38ad719a8942ec1ae1c78e8d680e467b06815a20
      40df15a4
  19. 13 May, 2020 1 commit
    • Ghanshyam Mann's avatar
      Fix hacking min version to 3.0.1 · f7c44fb7
      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: I2d4d416d6b00d402819edf2eaed7ebd025e764f8
      f7c44fb7
  20. 05 May, 2020 1 commit
  21. 02 May, 2020 2 commits
  22. 01 May, 2020 2 commits
  23. 28 Apr, 2020 1 commit
  24. 27 Apr, 2020 1 commit
  25. 24 Apr, 2020 2 commits
  26. 21 Apr, 2020 1 commit
    • Andreas Jaeger's avatar
      Cleanup py27 support · ddaa0a1e
      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
      - 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.
      
      Change-Id: Icf69fa99ed77a0935062ee4fc8e9c6a195b381e5
      ddaa0a1e
  27. 20 Apr, 2020 2 commits
    • Andreas Jaeger's avatar
      Update hacking for Python3 · 4f8b5ea0
      Andreas Jaeger authored
      The repo is Python 3 now, so update hacking to version 3.0 which
      supports Python 3.
      
      Update local hacking checks for new flake8.
      
      Remove hacking and friends from lower-constraints, they are not needed
      for installation.
      
      Change-Id: Ib6f30427e736ff488598e80e87ce0a8b39e92f33
      4f8b5ea0
    • Akihiro Motoki's avatar
      Use unittest.mock instead of third party mock · bd686394
      Akihiro Motoki authored
      horizon recently switched from the third-party mock to unittest.mock.
      This breaks heat-dashboard unit tests somehow.
      We no longer support py27 and we can use the standard library
      unittest.mock module. Rather than investigating the cause of
      the failure, it would be nice to switch to unittest.mock.
      
      horizon dependency is updated to 18.3.1 as unittest.mock is used
      since 18.3.0 and 18.3.0 has an issue that it always requires pytest.
      lower-constraints is updated to match horizon requirements.
      
      hacking local-check-factory is disabled temporarily due to
      the incompatibility with hacking 2.0 or later.
      https://review.opendev.org/#/c/715690/ will recover it.
      
      Change-Id: I517d6d7d36410c64bf48ad958b3e2115725a6491
      bd686394
  28. 22 Jan, 2020 1 commit
  29. 21 Jan, 2020 3 commits
  30. 20 Jan, 2020 2 commits