Skip to content

now use git-bash by default for new terminal creation #91

now use git-bash by default for new terminal creation

now use git-bash by default for new terminal creation #91

Workflow file for this run

name: Ubuntu_Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.10.4]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install --no-cache-dir -e . && pip install -r requirements.testing.txt
- name: Run tests
run: |
python -m unittest discover -s tests -vv