Skip to content

Commit

Permalink
complete refactor
Browse files Browse the repository at this point in the history
Low-level client (similar to boto3 but more pythonic)
Object-mapper will be added later
  • Loading branch information
ojii committed Jul 28, 2017
1 parent 6b7f155 commit 714c781
Show file tree
Hide file tree
Showing 21 changed files with 677 additions and 1,074 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ jobs:
docker:
- image: python:3.6
environment:
DYNAMODB_ENDPOINT_URL: http://localhost:8000
DYNAMODB_URL: http://localhost:8000
AWS_ACCESS_KEY_ID: dummy
AWS_SECRET_ACCESS_KEY: dummy
- image: ojii/dynamodb-local:latest
working_directory: /home/ubuntu/aiodynamo
steps:
- checkout
- run: pip install -e .
- run: pip install -r test-requirements.txt
- run: pip install -r tests/requirements.txt
- run: find . -regex '.*__pycache__.*' -delete
- run: pytest --verbose --cov=src/aiodynamo --cov-report=html:reports/coverage/ --junitxml=reports/results/junit.xml
- run: pytest --verbose
- store_artifacts:
path: reports/coverage/
destination: reports
Expand Down
2 changes: 0 additions & 2 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
[pytest]
addopts = --flakes
testpaths = tests
flakes-ignore = ImportStarUsed
Loading

0 comments on commit 714c781

Please sign in to comment.