-
-
Notifications
You must be signed in to change notification settings - Fork 907
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With only one version of Python, currently 3.11.
- Loading branch information
1 parent
2613421
commit 0b35598
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: test-alpine | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: alpine:latest | ||
|
||
defaults: | ||
run: | ||
shell: sh -exo pipefail {0} | ||
|
||
steps: | ||
- name: Install Alpine Linux packages | ||
run: | | ||
apk add git git-daemon python3 py3-pip | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Prepare this repo for tests | ||
run: | | ||
./init-tests-after-clone.sh | ||
- name: Set git user identity and command aliases for the tests | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Travis Runner" | ||
# If we rewrite the user's config by accident, we will mess it up | ||
# and cause subsequent tests to fail | ||
cat test/fixtures/.gitconfig >> ~/.gitconfig | ||
- name: Update PyPA packages | ||
run: | | ||
# Get the latest pip, wheel, and prior to Python 3.12, setuptools. | ||
python -m pip install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel | ||
- name: Install project and test dependencies | ||
run: | | ||
pip install ".[test]" | ||
- name: Show version and platform information | ||
run: | | ||
uname -a | ||
command -v git python | ||
git version | ||
python --version | ||
python -c 'import os, sys; print(f"sys.platform={sys.platform!r}, os.name={os.name!r}")' | ||
- name: Test with pytest | ||
run: | | ||
pytest --color=yes -p no:sugar --instafail -vv |