Now display raw error instead of trying to parse it #131
Workflow file for this run
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: | |
push: | |
branches: | |
- master | |
- '*.*.*' | |
pull_request: | |
branches: | |
- master | |
- '*.*.*' | |
release: | |
types: [ published ] | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.11' | |
- name: Install packages | |
run: pip install -r develop_requirements.txt | |
- name: Black | |
run: | | |
black --check -l 120 django_opensearch_dsl tests | |
pycodestyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.11' | |
- name: Install packages | |
run: pip install -r develop_requirements.txt | |
- name: Pycodestyle | |
run: | | |
pycodestyle django_opensearch_dsl tests | |
pydocstyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.11' | |
- name: Install packages | |
run: pip install -r develop_requirements.txt | |
- name: Pydocstyle | |
run: | | |
pydocstyle --count django_opensearch_dsl tests | |
test: | |
needs: [black, pycodestyle, pydocstyle] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ 3.7, 3.8, 3.9, '3.10', '3.11'] | |
django-version: [ 32, 40, 41 ] | |
opensearch-version: [ 10, 20 ] | |
exclude: | |
- python-version: 3.7 | |
django-version: 40 | |
- python-version: 3.7 | |
django-version: 41 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run Opensearch in docker | |
run: | | |
docker-compose up -d opensearch_test_${{ matrix.opensearch-version }} | |
sleep 30 | |
- name: Install Tox and any other packages | |
run: | | |
pip install tox | |
- name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}, Opensearch ${{ matrix.opensearch-version }} | |
run: tox -e py-django${{ matrix.django-version }}-opensearch${{ matrix.opensearch-version }} | |
- name: Upload coverage to Codecov | |
if: matrix.python-version == 3.10 && matrix.django-version == 41 | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml | |
publish: | |
needs: test | |
if: github.event_name == 'release' && github.event.action == 'published' | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
- name: Creating Built Distributions | |
run: python setup.py sdist | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.pypi_password }} | |
skip_existing: true |