Support for MQ-based Chatbots #197
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
# This workflow will run unit tests | |
name: Run Unit Tests | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
unit_tests: | |
strategy: | |
matrix: | |
python-version: [ 3.7, 3.8, 3.9, '3.10' ] | |
max-parallel: 1 | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/test_requirements.txt | |
pip install . | |
env: | |
GITHUB_TOKEN: ${{secrets.neon_token}} | |
- name: Test with pytest | |
run: | | |
pip install pytest pytest-timeout pytest-cov | |
pytest tests/chatbot_core_tests.py --doctest-modules --junitxml=tests/test-results.xml | |
- name: Upload pytest test results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-results | |
path: tests/test-results.xml |