tarantool / tarantool-python

Python client library for Tarantool
https://www.tarantool.io
BSD 2-Clause "Simplified" License
101 stars 46 forks source link

test: replace tarantool bugs xfail to skip #236

Closed DifferentialOrange closed 2 years ago

DifferentialOrange commented 2 years ago

Tests related to Tarantool datetime bugs [1, 2] are marked with xfail so it would be convenient to notice when the bug is fixed. At the same time, tarantool/tarantool CI requires that tarantool/tarantool-python must be green for each PR and it's not work for a PR with datetime bugs [1, 2] fix: xfail triggers "unexpected success" and CI fails. To break this codependency, this patch replaces xfail with skip.

  1. https://github.com/tarantool/tarantool/issues/7698
  2. https://github.com/tarantool/tarantool/issues/7700

Follows #229