Skip to content

fix(repo): replace .io with .com, update failing test when running vi… #99

fix(repo): replace .io with .com, update failing test when running vi…

fix(repo): replace .io with .com, update failing test when running vi… #99

Workflow file for this run

# This workflow will install Python dependencies and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7.9]
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
python -m pip install Faker pytest pytest-socket requests requests_mock validators
- name: Test with pytest
run: |
pytest