levels touch everything on read #235
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
name: Tests | |
on: [ pull_request ] | |
env: | |
MODULE_NAME: tarn | |
CI: true | |
jobs: | |
test-linux: | |
runs-on: ubuntu-20.04 | |
env: | |
OS: ubuntu | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11' ] | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: --entrypoint redis-server | |
openssh-server: | |
image: linuxserver/openssh-server | |
ports: | |
- 2222:2222 | |
env: | |
PUID: 1001 | |
PGID: 1001 | |
PASSWORD_ACCESS: 'true' | |
USER_NAME: remote_user | |
USER_PASSWORD: password | |
volumes: | |
- /tmp:/tmp | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build the package | |
run: | | |
python setup.py sdist | |
- name: Create ssh key | |
run: | | |
mkdir ~/.ssh && chmod 770 ~/.ssh | |
cp tests/assets/ssh_config ~/.ssh/config | |
# make sure we can connect now | |
sshpass -p password ssh -o "StrictHostKeyChecking no" remote echo Ok | |
- name: Install | |
run: | | |
pip install dist/* | |
pip install -r tests/requirements.txt | |
cd tests | |
export MODULE_PARENT=$(python -c "import $MODULE_NAME, os; print(os.path.dirname($MODULE_NAME.__path__[0]))") | |
export MODULE_PARENT=${MODULE_PARENT%"/"} | |
cd .. | |
echo $MODULE_PARENT | |
echo "MODULE_PARENT=$(echo $MODULE_PARENT)" >> $GITHUB_ENV | |
- name: Setup docker-compose services | |
run: | | |
mkdir -p /tmp/http/storage | |
docker-compose -f tests/assets/docker-compose.yml up -d | |
- name: Test with pytest | |
run: | | |
pytest tests --junitxml=reports/junit-${{ matrix.python-version }}-${OS}.xml --cov="$MODULE_PARENT/$MODULE_NAME" --cov-report=xml --cov-branch | |
- name: Generate coverage report | |
run: | | |
coverage xml -o reports/coverage-${{ matrix.python-version }}-${OS}.xml | |
sed -i -e "s|$MODULE_PARENT/||g" reports/coverage-${{ matrix.python-version }}-${OS}.xml | |
sed -i -e "s|$(echo $MODULE_PARENT/ | tr "/" .)||g" reports/coverage-${{ matrix.python-version }}-${OS}.xml | |
- name: Test older pydantic | |
run: | | |
pip install --upgrade "pydantic<2.0.0" | |
pytest tests --junitxml=reports/junit-${{ matrix.python-version }}-${OS}-pydantic1.xml --cov="$MODULE_PARENT/$MODULE_NAME" --cov-report=xml --cov-branch | |
coverage xml -o reports/coverage-${{ matrix.python-version }}-${OS}-pydantic1.xml | |
sed -i -e "s|$MODULE_PARENT/||g" reports/coverage-${{ matrix.python-version }}-${OS}-pydantic1.xml | |
sed -i -e "s|$(echo $MODULE_PARENT/ | tr "/" .)||g" reports/coverage-${{ matrix.python-version }}-${OS}-pydantic1.xml | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: reports-${{ matrix.python-version }}-${OS} | |
path: reports/*.xml | |
if: ${{ always() }} | |
- name: Upload coverage results | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: true | |
files: reports/coverage-*.xml | |
verbose: true | |
test-windows: | |
runs-on: windows-latest | |
env: | |
OS: windows | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build the package | |
run: | | |
python setup.py sdist | |
- name: Install | |
run: | | |
pip install $(Get-ChildItem -LiteralPath dist -Filter *.tar.gz) | |
pip install -r tests/requirements.txt | |
- name: Test with pytest | |
run: | | |
pytest tests -m "not redis and not ssh and not nginx and not s3" --junitxml=reports/junit-${{ matrix.python-version }}-${OS}.xml --cov-branch | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: reports-${{ matrix.python-version }}-${OS} | |
path: reports/*.xml | |
if: ${{ always() }} |