Allow to configure the max_time_ms parameter to use when calling mong… #52
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: | |
create: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Python | |
uses: actions/setup-python@v2 | |
- name: Build | |
run: | | |
pip install wheel | |
./setup.py bdist_wheel | |
- name: Upload build wheel | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wheel | |
path: dist/*.whl | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Setup python dependencies | |
run: | | |
pip install -q -r requirements.txt | |
pip install -q -r requirements_test.txt | |
- name: Run tests | |
run: | | |
coverage run -m unittest | |
- name: Coveralls Parallel | |
uses: AndreMiras/coveralls-python-action@develop | |
with: | |
github-token: ${{ secrets.github_token }} | |
flag-name: unit-tests-python${{ matrix.python-version }} | |
parallel: true | |
finish: | |
needs: | |
- build | |
- unit-tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
parallel-finished: true | |
- uses: actions/download-artifact@v2 | |
if: startsWith(github.ref, 'refs/tags') | |
with: | |
name: wheel | |
path: dist | |
- name: Publish distribution 📦 to PyPI | |
if: startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |