File tree Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
25
25
## Project structure
26
26
```
27
27
├── README.md # this file
28
- ├── apprunner.yaml
29
28
├── requirements.txt
30
29
│
31
30
├── lib
@@ -66,8 +65,44 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
66
65
│ ├── motor.py
67
66
│ └── rocket.py
68
67
│
69
- └── test
70
- └── infinity-api-postman-collection.json
68
+ └── tests
69
+ ├── infinity-api-postman-collection.json
70
+ │
71
+ ├── integration
72
+ │
73
+ └── unit
74
+ ├── test_secrets.py
75
+ ├── test_api.py
76
+ │
77
+ ├── test_controllers
78
+ │ ├── test_environment.py
79
+ │ ├── test_flight.py
80
+ │ ├── test_motor.py
81
+ │ └── test_rocket.py
82
+ │
83
+ ├── test_routes
84
+ │ ├── test_environment.py
85
+ │ ├── test_flight.py
86
+ │ ├── test_motor.py
87
+ │ └── test_rocket.py
88
+ │
89
+ ├── test_repositories
90
+ │ ├── test_environment.py
91
+ │ ├── test_flight.py
92
+ │ ├── test_motor.py
93
+ │ └── test_rocket.py
94
+ │
95
+ ├── test_models
96
+ │ ├── test_environment.py
97
+ │ ├── test_flight.py
98
+ │ ├── test_motor.py
99
+ │ └── test_rocket.py
100
+ │
101
+ └── test_views
102
+ ├── test_environment.py
103
+ ├── test_flight.py
104
+ ├── test_motor.py
105
+ └── test_rocket.py
71
106
```
72
107
73
108
## DOCS
File renamed without changes.
You can’t perform that action at this time.
0 commit comments