1. 27 Dec, 2019 1 commit
  2. 19 Dec, 2019 1 commit
    • caoyuan's avatar
      tox: Keeping going with docs · 7aa9e87e
      caoyuan authored
      Sphinx 1.8 introduced [1] the '--keep-going' argument which, as its name
      suggests, keeps the build running when it encounters non-fatal errors.
      This is exceptionally useful in avoiding a continuous edit-build loop
      when undertaking large doc reworks where multiple errors may be
      introduced.
      
      [1] https://github.com/sphinx-doc/sphinx/commit/e3483e9b045
      
      Change-Id: I0e40eb0e5267d1cdd0ec1195424743310f3c39f8
      7aa9e87e
  3. 16 Nov, 2019 1 commit
  4. 22 Oct, 2019 1 commit
  5. 18 Oct, 2019 1 commit
  6. 11 Oct, 2019 1 commit
  7. 06 Oct, 2019 1 commit
  8. 26 Sep, 2019 1 commit
    • OpenStack Release Bot's avatar
      Update master for stable/train · 460584bb
      OpenStack Release Bot authored
      Add file to the reno documentation build to show release notes for
      stable/train.
      
      Use pbr instruction to increment the minor version number
      automatically so that master versions are higher than the versions on
      stable/train.
      
      Change-Id: I330926727ecf0b41450d5317cafea642a70c1d35
      Sem-Ver: feature
      460584bb
  9. 12 Sep, 2019 1 commit
  10. 11 Sep, 2019 4 commits
  11. 10 Sep, 2019 1 commit
  12. 16 Aug, 2019 1 commit
    • Ghanshyam Mann's avatar
      Run only smoke tests in ipv6 job · 4213578c
      Ghanshyam Mann authored
      'congress-tempest-ipv6-only' job is to verify
      that congress is able to listen and run on IPv6
      env. We do not need to run all the tests in this
      job. Running only smoke tests should be fine.
      
      This commit define the 'congress-ipv6' tox env which
      include smoke test only as of now but it can be extended
      to include more IPv6 tests if any.
      
      Change-Id: Idbd4c6ea362487dd93330adddb26abc89387a726
      Story: #2005477
      Task: #35885
      4213578c
  13. 09 Aug, 2019 1 commit
  14. 08 Aug, 2019 2 commits
  15. 07 Aug, 2019 1 commit
    • Eric K's avatar
      update devstack plugin for ipv6 · 5d8d0e7c
      Eric K authored
      Set listen address to devstack variable SERVICE_LISTEN_ADDRESS
      to override the default 0.0.0.0 (which does not listen to ipv6 addresses).
      
      Change-Id: I1bbc3539a751f7c0c0f54ec046f88a847b4647f9
      Story: #2005477
      5d8d0e7c
  16. 30 Jul, 2019 1 commit
  17. 18 Jun, 2019 1 commit
    • jacky06's avatar
      Sync Sphinx requirement · 41363e45
      jacky06 authored
      1. Sync sphinx dependency with global requirements. It caps python 2 since
      sphinx 2.0 no longer supports Python 2.7.
      2. Remove unncessary space
      
      Change-Id: I389a0603d8f1a931a787d03eb6eeb6cb57a8388d
      41363e45
  18. 17 May, 2019 2 commits
  19. 15 May, 2019 1 commit
  20. 13 May, 2019 1 commit
  21. 10 May, 2019 3 commits
  22. 08 May, 2019 2 commits
    • Eric K's avatar
      Lower psycopg2 dependency to >=2.5.1 · 59317402
      Eric K authored
      Because 2.5.1 is the version available on RHEL/CentOS 7.
      This is done by replacing the use of psycopg2.sql module.
      
      Change-Id: Ie83ca2b3cd439649878517fa0fbc2a4381ad018d
      Closes-Bug: 1823095
      59317402
    • Eric K's avatar
      Fix glance json ingester api path · 8adf6535
      Eric K authored
      The /v2/ part previously ommitted. Added here.
      
      Change-Id: I013d3c1e3dfa7f478a228d8d13af86ef37b3771b
      8adf6535
  23. 07 May, 2019 1 commit
    • Eric K's avatar
      Add libpq-dev to bindeps.txt and install doc · c0d6c6c1
      Eric K authored
      Because it is needed to install psycopg 2.8.2 on ubuntu. Resolves
      dependency install failure on unit tests on ubuntu nodes.
      
      Change-Id: I04e9272e351badc1344235571d6f2c9e79fb6223
      Closes-Bug: 1828109
      c0d6c6c1
  24. 22 Apr, 2019 1 commit
  25. 19 Apr, 2019 1 commit
  26. 14 Apr, 2019 1 commit
  27. 09 Apr, 2019 1 commit
  28. 06 Apr, 2019 1 commit
    • Eric K's avatar
      Resolve instability in json_ingester test_execute_exec_api_rows · 31e7e042
      Eric K authored
      Occassionally the unit test congress.tests.datasources.json_ingester.
      test_exec_api.TestExecApiManager.test_execute_exec_api_rows
      fails inside eventlet code even though the eventlet call is mocked
      out.
      
      This patch adds a new mock path because eventlet.spawn_n
      somehow redirects there. Hopefully it resolves the occassional
      instability gets.
      
      Sample error:
        File "/home/zuul/src/git.openstack.org/openstack/congress/.tox/py27/local/lib/python2.7/site-packages/eventlet/greenpool.py", line 115, in spawn_n
          function, args, kwargs, True)
        File "/home/zuul/src/git.openstack.org/openstack/congress/.tox/py27/local/lib/python2.7/site-packages/mock/mock.py", line 1062, in __call__
          return _mock_self._mock_call(*args, **kwargs)
        File "/home/zuul/src/git.openstack.org/openstack/congress/.tox/py27/local/lib/python2.7/site-packages/mock/mock.py", line 1128, in _mock_call
          ret_val = effect(*args, **kwargs)
        File "congress/tests/datasources/json_ingester/test_exec_api.py", line 27, in mock_spawn_execute
          return func(*args, **kwargs)
        File "/home/zuul/src/git.openstack.org/openstack/congress/.tox/py27/local/lib/python2.7/site-packages/eventlet/greenpool.py", line 99, in _spawn_n_impl
          self._spawn_done(coro)
        File "/home/zuul/src/git.openstack.org/openstack/congress/.tox/py27/local/lib/python2.7/site-packages/eventlet/greenpool.py", line 131, in _spawn_done
          self.coroutines_running.remove(coro)
      KeyError: <greenlet.greenlet object at 0x7fd975681cd0>
      
      Change-Id: I72e11a67cf1cd3ff3fbc574f2d6e91df17d63d9c
      31e7e042
  29. 04 Apr, 2019 4 commits