# 🔍 Description ## Issue References 🔗 This pull request fixes #6281 Following up to #6343 , this PR adds `pytest-xdist` plugin to speed up python client unit testing ## Types of changes 🔖 - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan 🧪 #### Behavior Without This Pull Request ⚰️ Running tests usually takes ~10 mins #### Behavior With This Pull Request 🎉 Running tests can take up to 5 mins #### Related Unit Tests --- # Checklist 📝 - [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6369 from sudohainguyen/ci/speed-up-test. Closes #6281 f0ce55719 [Harry] [KYUUBI #6281][PY] Speed up testing with xdist plugin Authored-by: Harry <quanghai.ng1512@gmail.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
19 lines
460 B
Plaintext
19 lines
460 B
Plaintext
# test-only packages: pin everything to minimize change
|
|
flake8==3.4.1
|
|
mock==2.0.0
|
|
pycodestyle==2.3.1
|
|
pytest==7.4.4
|
|
pytest-cov==5.0.0
|
|
pytest-xdist==3.5.0
|
|
|
|
# actual dependencies: let things break if a package changes
|
|
sqlalchemy>=1.3.0
|
|
requests>=1.0.0
|
|
requests_kerberos>=0.12.0
|
|
sasl>=0.2.1
|
|
pure-sasl>=0.6.2
|
|
kerberos>=1.3.0
|
|
thrift>=0.10.0
|
|
#thrift_sasl>=0.1.0
|
|
git+https://github.com/cloudera/thrift_sasl # Using master branch in order to get Python 3 SASL patches
|