1. 19 Nov, 2020 1 commit
  2. 12 Nov, 2020 2 commits
    • Julia Kreger's avatar
      Fix byte check in tempest plugin · e056d5f4
      Julia Kreger authored
      Different implementations of ping behave slightly differently
      in order to ensure the packet payload is transmitted across
      the wire because some mediums have a minimum packet size.
      
      Typically this results in a frame size of 64 bytes, but
      the client may report 56 when the header is removed and only
      the packet payload is examined.
      
      But the point of the check is that we got something back.
      
      The below edited for example purposes:
      
      $ ping -c1 -w4 192.168.133.92
      PING 192.168.65.92 (192.168.133.92) 56(84) bytes of data.
      From 192.168.65.249 icmp_seq=1 Destination Host Unreachable
      
      --- 192.168.65.92 ping statistics ---
      1 packets transmitted, 0 received, 0 errors, 100% packet loss, time 3075ms
      $ ping -c1 -w4 192.168.65.1
      PING 192.168.65.1 (192.168.65.1) 56(84) bytes of data.
      64 bytes from 192.168.65.1: icmp_seq=1 ttl=64 time=12.4 ms
      
      And then in CI, we're able to see this be 56 bytes returned
      becasue the underlying medium may not have been ethernet or
      the client has stripped the header. Which, doesn't matter,
      we get A reply from the expected address and we can validate
      the test on that alone.
      
      Change-Id: If0d51b52e96f280336d0d92135681db75a6fbd65
      e056d5f4
    • Riccardo Pittau's avatar
      Run redfish victoria job on focal · 131ffef6
      Riccardo Pittau authored
      The ironic-standalone-redfish-victoria job is using latest tinyipa
      based on tinycore 11.x, but still running on bionic.
      That causes issues during the ipa-ramdisk build because of kernel
      too old in bionic, so setting nodeset to focal.
      
      Change-Id: Ia0fbc97184a4098635085edbdd6d7be5dfd2218c
      131ffef6
  3. 01 Nov, 2020 1 commit
  4. 27 Oct, 2020 1 commit
  5. 19 Oct, 2020 1 commit
    • Riccardo Pittau's avatar
      Set safe version of hacking · 912a0e55
      Riccardo Pittau authored
      Versions of hacking from 3.1.0 until 4.0.0 NOT included are supposed
      to require a safe version of flake8, so besides normale issues related
      to minor version upgrades, we can safely use those versions.
      Also forcing pycodestyle versions to be compatible with flake8 installed
      by hacking.
      
      Change-Id: Idb66f2ae0105308747cdf3046b09a22bdf691ea3
      912a0e55
  6. 12 Oct, 2020 1 commit
  7. 01 Oct, 2020 1 commit
  8. 07 Aug, 2020 2 commits
  9. 03 Aug, 2020 1 commit
  10. 31 Jul, 2020 1 commit
    • Dmitry Tantsur's avatar
      Test software RAID in deploy-time on Victoria and newer · 0cc7aa92
      Dmitry Tantsur authored
      Adds a new feature flag to enable it instead of cleaning time.
      
      Make the standalone-redfish job voting since it covers some
      of the tests that are not covered by the ipmi one.
      
      Story: #2006963
      Task: #40462
      Change-Id: Id2e376e38771700d295f632e84ab3e32710d8180
      0cc7aa92
  11. 15 Jul, 2020 1 commit
  12. 08 Jul, 2020 1 commit
  13. 01 Jul, 2020 1 commit
  14. 30 Jun, 2020 2 commits
    • zhangbailin's avatar
      Fix hacking min version to 3.0.1 · 4b0bf2ca
      zhangbailin 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: I90fa5ab8085a07c3f19b32cfdbbeb6bfe3953087
      4b0bf2ca
    • Iury Gregory Melo Ferreira's avatar
      Improve test_baremetal_basic_ops · d180a3ef
      Iury Gregory Melo Ferreira authored
      - test_baremetal_basic_ops now can test scenarios
      for partition/wholedisk images.
      - added a new configuration for tempest `boot_mode`.
      - if boot_mode is uefi the test_baremetal_basic_ops
      will run a verification to make sure the VM is using
      uefi.
      
      Change-Id: I920675b8a61a65c850b245283c3613b03f33ee6a
      d180a3ef
  15. 28 May, 2020 1 commit
  16. 24 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Switch to newer openstackdocstheme version · 2612a988
      Andreas Jaeger authored
      Switch to openstackdocstheme 2.2.1 version. Using
      this version 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.
      
      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: I263e2109e455ee98a940cb34356e37473413cad4
      2612a988
  17. 19 May, 2020 1 commit
  18. 11 May, 2020 1 commit
    • Iury Gregory Melo Ferreira's avatar
      Add standalone redfish jobs · 26580f51
      Iury Gregory Melo Ferreira authored
      Since we split the tests let's add ironic-standalone-redfish jobs
      in the check phase
      
      Depends-On: I1d2c3c2b4fe2a6eda64895bf73a6f57175c192b6
      Change-Id: Ia1036d8a7fbb5dcf4bec07802d83198c477fbec4
      26580f51
  19. 06 May, 2020 1 commit
    • Ghanshyam Mann's avatar
      Add stable/ussuri job on master gate · 6c9bd6cb
      Ghanshyam Mann authored
      Now we have stable/ussuri branch ready for devstack
      and so does for all service projects.
      
      This commit adds the stable/ussuri job on tempest plugin
      master gate.
      
      Change-Id: Id758a4b9a47261abc7a37abb87b1137e15d2b451
      6c9bd6cb
  20. 03 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Update docs building · 7e2d6f22
      Andreas Jaeger authored
      Update docs building:
      * Switch to sphinx-build
      * Update requirements for Sphinx and openstackdocstheme for
        python 3, create doc/requirements.txt file.
      * Remove unneeded doc and translation sections from setup.cfg
      * Remove install_command, it's unneeded, the default is fine.
      * Use TOX_CONSTRAINTS instead of obsolete UPPER_CONSTRAINTS
      
      Change-Id: I6ff4427014fc967a6f7b28fc6cbe5a0f4eca601c
      7e2d6f22
  21. 24 Apr, 2020 1 commit
    • Derek Higgins's avatar
      Add basic IPv6 support to BaremetalSingleTenant · b8271765
      Derek Higgins authored
      If ip_version_for_ssh == 6 then use a IPv6 range for
      the tenant network. The range used (fd00:33::/64) should
      be routed to the gatway IP for for the router configured
      in tempest.conf ("public_router_id").
      
      Use dhcpv6-stateless for IPv6 addressing as
      o using iPXE with DHCPv6 has problems as dnsmasq wont
        hand out IP addresses when the DHCPv6 clid or iaid
        changes
      o the cirros image doesn't seem to support DHCPv6.
      
      Change-Id: Id67be61534f1384af1a539ef257b0b85d4fff180
      b8271765
  22. 23 Apr, 2020 2 commits
  23. 22 Apr, 2020 1 commit
    • Julia Kreger's avatar
      Actually log state transition timeouts in debug log · 3273708b
      Julia Kreger authored
      I don't know why we never did this... but I'm sure we
      have spent far too many hours chasing issues that
      a little logging here would have saved us the
      trouble of.
      
      Change-Id: I0d926ab4972874f1901c5092fe54e3546af2a587
      3273708b
  24. 21 Apr, 2020 1 commit
  25. 17 Apr, 2020 1 commit
  26. 03 Apr, 2020 1 commit
  27. 01 Apr, 2020 1 commit
  28. 30 Mar, 2020 2 commits
    • Iury Gregory Melo Ferreira's avatar
      Split Tempest tests between ipmi and redfish · 8bcc4fa9
      Iury Gregory Melo Ferreira authored
      - Renamed the classes from the ironic_standalone scenario
      - Added logic to choose redfish as driver when possible
      
      Change-Id: If81a39dd8bee657bba8c5cee0fead900c6e8f56c
      8bcc4fa9
    • Riccardo Pittau's avatar
      Bump hacking to 3.0.0 · 441c5065
      Riccardo Pittau authored
      The new version enables a lot of standard flake8 checks, so a few
      fixes are required. W503 is disabled as it conflicts with W504
      and the latter seems to be preferred nowadays.
      
      Change-Id: I3b1e20193a2cb3d28046ad0f2008577a95aaaefd
      441c5065
  29. 24 Mar, 2020 1 commit
  30. 21 Mar, 2020 1 commit
  31. 20 Mar, 2020 1 commit
    • Iury Gregory Melo Ferreira's avatar
      Upddate tox config · 41a016b5
      Iury Gregory Melo Ferreira authored
      - Removes py3 env since we don't run unit tests
      - Update requirements to use stestr and coverage
      - Update tox.ini to use stestr
      
      Change-Id: Iecb18a3e616173217b7edb756dcaabd8df009629
      41a016b5
  32. 19 Mar, 2020 1 commit
  33. 17 Mar, 2020 1 commit
  34. 13 Mar, 2020 1 commit
    • Iury Gregory Melo Ferreira's avatar
      Use service_available · a5129138
      Iury Gregory Melo Ferreira authored
      To enable tests in tempest the services need to be added
      to `service_available` and not `service_enabled`
      
      Change-Id: Id4fd48d98f521f8ab3c49ccb12f8c770bc787c21
      a5129138
  35. 10 Mar, 2020 1 commit