File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,19 +28,19 @@ jobs:
2828 pip install -r requirements.txt
2929 - name : Test basic restore and backup
3030 run : |
31- mkdir dump && cp -a test /testTable dump
31+ mkdir dump && cp -a tests /testTable dump
3232 python dynamodump.py -m restore --noConfirm -r local -s testTable -d testRestoredTable --host localhost --port 8000 --accessKey a --secretKey a
3333 python dynamodump.py -m backup -r local -s testRestoredTable --host localhost --port 8000 --accessKey a --secretKey a
34- python test /test.py
34+ python tests /test.py
3535 - name : Test wildcard restore and backup
3636 run : |
3737 python dynamodump.py -m restore --noConfirm -r local -s "*" --host localhost --port 8000 --accessKey a --secretKey a
3838 rm -rf dump/test*
3939 python dynamodump.py -m backup -r local -s "*" --host localhost --port 8000 --accessKey a --secretKey a
40- python test /test.py
40+ python tests /test.py
4141 - name : Test prefixed wildcard restore and backup
4242 run : |
4343 python dynamodump.py -m restore --noConfirm -r local -s "test*" --host localhost --port 8000 --accessKey a --secretKey a --prefixSeparator ""
4444 rm -rf dump/test*
4545 python dynamodump.py -m backup -r local -s "test*" --host localhost --port 8000 --accessKey a --secretKey a --prefixSeparator ""
46- python test /test.py
46+ python tests /test.py
File renamed without changes.
Original file line number Diff line number Diff line change 22import json
33import unittest
44
5- TEST_DATA_PATH = "test /testTable"
5+ TEST_DATA_PATH = "tests /testTable"
66DUMP_DATA_PATH = "dump/testRestoredTable"
77SCHEMA_FILE = "schema.json"
88DATA_FILE = "0001.json"
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments