Skip to content

Commit

Permalink
Make test to pass using the same versions as expected
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Feb 2, 2021
1 parent 891ce5e commit af6a705
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@
('python3.6 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.6.12/lib/python3.6/site-packages/pip (python 3.6)"),
('python3.7 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.7.9/lib/python3.7/site-packages/pip (python 3.7)"),
('python3.8 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.8.6/lib/python3.8/site-packages/pip (python 3.8)"),
('python3.9 -m pip --version', "pip 20.0.2 from /home/docs/.pyenv/versions/3.9.1/lib/python3.9/site-packages/pip (python 3.9)"),
('python3.9 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.9.1/lib/python3.9/site-packages/pip (python 3.9)"),
# setuptools
('python2 -c "import setuptools; print(setuptools.__version__)"', "44.0.0"),
('python3.5 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
('python3.6 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
('python3.7 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
('python3.8 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
('python3.9 -c "import setuptools; print(setuptools.__version__)"', "45.2.0"),
('python3.9 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
# virtualenv
('python2 -m virtualenv --version', '16.7.9'),
('python3.5 -m virtualenv --version', '16.7.9'),
('python3.6 -m virtualenv --version', '16.7.9'),
('python3.7 -m virtualenv --version', '16.7.9'),
('python3.8 -m virtualenv --version', '16.7.9'),
('python3.9 -m virtualenv --version', 'virtualenv 20.0.7 from /home/docs/.pyenv/versions/3.9.1/lib/python3.9/site-packages/virtualenv/__init__.py'),
('python3.9 -m virtualenv --version', '16.7.9'),
# others
('node --version', 'v10.19.0'),
('npm --version', '6.14.4'),
Expand Down

0 comments on commit af6a705

Please sign in to comment.