Branch missing project for Caracal

rally-plugins project was branched with latest commit
of rally. So the branching process didn't work, it should
be fixed with this patch.

Change-Id: I4be4323167e76af0f25d8120acacdd3137640e57
2 files changed
tree: 1db74822213e4e8f290832a87abc472b3b0bac9e
  1. ci-scripts/
  2. dashboards/
  3. gerrit/
  4. gerritbot/
  5. jobs-zuul/
  6. metrics/
  7. nodepool/
  8. nodepoolV3/
  9. playbooks/
  10. policies/
  11. repoxplorer/
  12. resources/
  13. roles/
  14. tools/
  15. zuul/
  16. zuul.d/
  17. .ansible-lint
  18. .gitignore
  19. .gitreview
  20. .pre-commit-config.yaml
  21. project-config-nodepool.sh
  22. README.md
  23. test-requirements.in
  24. test-requirements.txt
  25. tox.ini
README.md

Test dependency management

To achieve reproducible test results on both development and CI environments, we do lock/pin all test dependencies inside test-requirements.txt. This is used as a pip constraints file inside various tox environments so it will only force pip to directly pick specific versions instead of trying to resolve them at runtime.

The file is automatically updated when you run tox -e deps, an action that we will do whenever we find a need for a dependency bump. The real source files for dependencies are test-requirements.in and this is the place where we define compatibility ranges.

Many applications are using the same approach for locking their entire set of dependencies, not only the test ones. Still for our particular use-case, we get most benefits from doing this only for test ones.

There is no tox-deps zuul job because it does not make sense to run it on CI. With 20+ test dependencies on average we have at least one dependency updated each day. We don't really need to run bleeding edge and be the first line of defense for all these libraries. Still, whenever we want we can update them with a single command, making testing much easier.

These test constraints files are not shared across repositories for good reasons, they are specific to each repo and affect testing of a single repository. If we would attempt to centralize them we will create a case were they are almost impossible to update, due to the huge amount of testing needed. There is nothing wrong using outdated test dependencies, especially when is so easy to control their upgrades.

References: