Skip to content

Commit

Permalink
Merge pull request Colin-b#89 from Colin-b/install_in_ci
Browse files Browse the repository at this point in the history
Test steps will now ensure packages can be installed and imported
  • Loading branch information
Colin-b authored Mar 8, 2024
2 parents b9d19d6 + cf23925 commit ffa0458
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,13 @@ jobs:
- name: Create packages
run: |
python -m pip install build
python -m build .
python -m build .
rm -Rf httpx_auth
- name: Install wheel
run: |
python -m pip install dist/httpx_auth-0.22.0-py3-none-any.whl --force-reinstall
python -c 'import httpx_auth'
- name: Install source distribution
run: |
python -m pip install dist/httpx_auth-0.22.0.tar.gz --force-reinstall
python -c 'import httpx_auth'

0 comments on commit ffa0458

Please sign in to comment.