File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
test :
9
-
10
9
runs-on : ${{ matrix.os }}
11
10
12
11
strategy :
30
29
run : poetry install
31
30
32
31
- name : Test with pytest
33
- run : poetry run pytest tests/ -- cov=dynamodb_pyio --cov-report=xml
32
+ run : poetry run pytest tests/ -svv -- cov=dynamodb_pyio --cov-report=xml -m "not integration"
34
33
35
34
- name : Use Codecov to track coverage
36
35
uses : codecov/codecov-action@v3
37
36
with :
38
- files : ./coverage.xml # coverage report
37
+ files : ./coverage.xml # coverage report
Original file line number Diff line number Diff line change 27
27
from apache_beam import GroupIntoBatches
28
28
from apache_beam .options import pipeline_options
29
29
from apache_beam .testing .test_pipeline import TestPipeline
30
- from apache_beam .testing .util import assert_that , equal_to
31
30
32
31
from dynamodb_pyio .boto3_client import DynamoDBClient , DynamoDBClientError
33
32
from dynamodb_pyio .io import WriteToDynamoDB , _DynamoDBWriteFn
You can’t perform that action at this time.
0 commit comments