[SFU] Remove commented out logging statements #83
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: Cog Unit Tests | |
on: | |
pull_request: | |
push: | |
jobs: | |
run-tests: | |
name: Run cog unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Setup python3 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest pytest-asyncio pytest-mock | |
- name: Install SFUAnime's fork of Red-DiscordBot | |
run: | | |
pip install git+https://github.com/SFUAnime/Ren.git@V3/testing | |
- name: Run unit tests | |
run: | | |
pytest */test* |