Skip to content

Commit

Permalink
remove some outdated workarounds
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jan 4, 2015
1 parent e2d0032 commit 24b67df
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions appveyor.yml
Expand Up @@ -2,25 +2,20 @@
build: false
environment:
matrix:
#- PYTHON: "C:/Python34"
- PYTHON: "C:/Python34"
- PYTHON: "C:/Python27"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- ps: (new-object net.webclient).DownloadFile('https://pypi.python.org/packages/2.7/l/lxml/lxml-3.3.5.win32-py2.7.exe', 'C:/Python27/get-lxml.exe')
#- ps: (new-object net.webclient).DownloadFile('http://www.lfd.uci.edu/~gohlke/pythonlibs/5hgp4h3m/lxml-3.3.5.win32-py3.4.exe', 'C:/Python34/get-lxml.exe')
- "%PYTHON%/Scripts/easy_install.exe %PYTHON%/get-lxml.exe"
# can't install coverage etc.
- "%PYTHON%/Scripts/pip.exe install -r requirements-extras.txt pytest mock freezegun"
# temporary change, install with setup.py install so symlinks are expanned
# - "%PYTHON%/Scripts/pip.exe install ."
- "%PYTHON%/python.exe setup.py install"

# temp workaround
- "%PYTHON%/Scripts/pip.exe uninstall -y webassets"
# can't install coverage etc.
# temporary change, install with setup.py install so symlinks are expanded
- "%PYTHON%/Scripts/pip.exe install ."
#- "%PYTHON%/python.exe setup.py install"

test_script:
- "set path=%PYTHON%/Scripts;%path%"
Expand Down

0 comments on commit 24b67df

Please sign in to comment.