Skip to content

Commit

Permalink
Add moto test (Minimal test) to GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
igorborgest committed May 21, 2020
1 parent dbb06ca commit 5227f4a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/moto-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Moto Test

on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Setup Environment
run: ./requirements.sh
- name: Run moto tests (Minimal tests)
run: pytest --timeout=10 testing/test_awswrangler/test_moto.py

0 comments on commit 5227f4a

Please sign in to comment.