dd50ac6352
The problem of integration tests was that they use their own requirements.txt that is unable to auto-sync with global requirements. This patch removes dedicated requirements.txt and replaces it with a stub file listing names (and possibly versions) of the packages needed. Then a special script parses this stub file, and for every package that is present in main project requirements files it pulls the versions from main project requirements, generating and installing requirements for the integration tests on the fly. This will help keeping requirements for the integration tests always in sync with main project requirements. Change-Id: Ie79338cc10cc101fbf15b51c7923e3a7b8e4fbb4 Closes-Bug: #1490866
29 lines
405 B
Plaintext
29 lines
405 B
Plaintext
*.pyc
|
|
*.swp
|
|
*~
|
|
build
|
|
dist
|
|
*.egg*
|
|
tags
|
|
*.log
|
|
heat-test.db
|
|
heat.sqlite
|
|
.venv
|
|
AUTHORS
|
|
ChangeLog
|
|
templates/cloudformation-examples
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
cover
|
|
.testrepository
|
|
.project
|
|
.pydevproject
|
|
doc/source/api/
|
|
etc/heat/heat.conf.sample
|
|
# integration tests requirements are auto-generated from stub file
|
|
heat_integrationtests/requirements.txt
|
|
|
|
# Files created by releasenotes build
|
|
releasenotes/build
|