File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 run : |
3737 python -m pip install --upgrade pip
3838 pip install .
39+ - name : Smoke test
40+ run : |
41+ python -c "from xnum import *"
3942 - name : Dev requirements installation
4043 run : |
4144 pip install --upgrade --upgrade-strategy=only-if-needed -r requirements-dev.txt
6265 run : |
6366 python otherfiles/version_check.py
6467 if : matrix.python-version == env.TEST_PYTHON_VERSION
68+ - name : Build package
69+ run : |
70+ python -m build
71+ - name : Check package metadata
72+ run : |
73+ twine check dist/*
74+ - name : Wheel smoke test
75+ shell : bash
76+ run : |
77+ pip uninstall -y xnum
78+ pip install dist/*.whl
79+ mkdir wheel_test
80+ cd wheel_test
81+ python -c "from xnum import *"
Original file line number Diff line number Diff line change @@ -3,4 +3,6 @@ vulture>=1.0
33bandit >= 1.5.1
44pydocstyle >= 6.3.0
55pytest >= 4.3.1
6- pytest-cov >= 2.6.1
6+ pytest-cov >= 2.6.1
7+ build >= 1.1.1
8+ twine >= 4.0.2
You can’t perform that action at this time.
0 commit comments