Skip to content

Commit

Permalink
Minor Appveyor fix
Browse files Browse the repository at this point in the history
Signed-off-by: David Brown <dmlb2000@gmail.com>
  • Loading branch information
dmlb2000 committed Nov 13, 2019
1 parent da5a7a7 commit 5983949
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ install:
Expand-Archive "elasticsearch.zip" -DestinationPath "C:\elasticsearch";
C:\pacifica\Scripts\activate.ps1;
python -m pip install --upgrade pip setuptools wheel;
python -m pip install pywin32==225;
python -m pip install -r requirements-dev.txt;
python -m pip install 'celery[eventlet]' eventlet;
echo 'Done';
Expand Down
2 changes: 2 additions & 0 deletions tests/core/cmd_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ def _load_metadata(cls, version):
def _upgrade_path(cls, *versions):
cls._upgrade_package('pip', 'setuptools', 'wheel')
cls._install_package('elasticsearch<7')
if sys.platform == 'win32':
cls._install_package('pywin32!=226')
for version in versions:
cls._install_metadata(version)
if versions:
Expand Down

0 comments on commit 5983949

Please sign in to comment.