Skip to content

Commit a784a63

Browse files
committed
Repo/package rename
1 parent da1f350 commit a784a63

38 files changed

+65
-65
lines changed

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# .coveragerc to control coverage.py
22
[run]
33
omit =
4-
rest_client_gen/lazy.py
4+
json_to_models/lazy.py
55

66
[report]
77
exclude_lines =

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ install:
66
- pip install -r requirements.txt
77
- pip install pytest pytest-cov requests coveralls
88
script:
9-
- pytest --cov-config .coveragerc --cov=rest_client_gen -m "not no_expected" test/
9+
- pytest --cov-config .coveragerc --cov=json_to_models -m "not no_expected" test/
1010
after_success:
1111
- coveralls
1212
matrix:
File renamed without changes.
File renamed without changes.
File renamed without changes.

rest_client_gen/dynamic_typing/string_serializable.py renamed to json_to_models/dynamic_typing/string_serializable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def to_typing_code(cls) -> Tuple[ImportPathList, str]:
3434
as a metadata instance but contains actual data
3535
"""
3636
cls_name = cls.__name__
37-
return [('rest_client_gen.dynamic_typing', cls_name)], cls_name
37+
return [('json_to_models.dynamic_typing', cls_name)], cls_name
3838

3939

4040
T_StringSerializable = Type[StringSerializable]

0 commit comments

Comments
 (0)