Skip to content

Commit

Permalink
renames test folder
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielBarberini committed Mar 31, 2024
1 parent 1227afa commit eb8b871
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 3 deletions.
40 changes: 37 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
## Project structure
```
├── README.md # this file
├── apprunner.yaml
├── requirements.txt
│  
├── lib
Expand Down Expand Up @@ -66,8 +65,43 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
│   ├── motor.py
│   └── rocket.py
│  
└── test
└── infinity-api-postman-collection.json
└── tests
├── infinity-api-postman-collection.json
├── integration
│  
└── unit
├── test_secrets.py
├── test_api.py
│  
├── test_controllers
│   ├── test_environment.py
│   ├── test_flight.py
│   ├── test_motor.py
│   └── test_rocket.py
├── test_routes
│   ├── test_environment.py
│   ├── test_flight.py
│   ├── test_motor.py
│   └── test_rocket.py
├── test_repositories
│   ├── test_environment.py
│   ├── test_flight.py
│   ├── test_motor.py
│   └── test_rocket.py
├── test_models
│   ├── test_environment.py
│   ├── test_flight.py
│   ├── test_motor.py
│   └── test_rocket.py
│  
└── test_views
   ├── test_environment.py
   ├── test_flight.py
   ├── test_motor.py
   └── test_rocket.py
```

## DOCS
Expand Down
File renamed without changes.

0 comments on commit eb8b871

Please sign in to comment.