Skip to content

Commit

Permalink
testing hook
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansurf committed Jun 2, 2024
1 parent c167fe1 commit c090f33
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions docs/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,47 +23,46 @@ The basic structure of the project is:

More in-depth structure:

```
<!-- STRUCTURE START -->
.
├── compose.yaml
├── CONTRIBUTING.md
├── Dockerfile
├── docs
├── cheat_sheet.md
├── faq.md
├── index.md
├── install.md
├── setup.md
├── structure.md
├── styling.md
└── tests.md
   ├── cheat_sheet.md
   ├── faq.md
   ├── index.md
   ├── install.md
   ├── setup.md
   ├── structure.md
   ├── styling.md
   └── tests.md
├── help.txt
├── images
├── cli.gif
├── coverage_report.PNG
├── ocean.gif
├── old_cli.gif
├── wave.png
└── website.gif
   ├── cli.gif
   ├── coverage_report.PNG
   ├── ocean.gif
   ├── old_cli.gif
   ├── wave.png
   └── website.gif
├── makefile
├── mkdocs.yml
├── poetry.lock
├── pyproject.toml
├── README.md
├── src
│ ├── api.py
│ ├── art.py
│ ├── cli.py
│ ├── gpt.py
│ ├── helper.py
│ ├── __init__.py
│ ├── __pycache__
│ ├── send_email.py
│ ├── server.py
│ ├── settings.py
│ ├── static
│ └── templates
├── start_venv.sh
│   ├── api.py
│   ├── art.py
│   ├── cli.py
│   ├── gpt.py
│   ├── helper.py
│   ├── __init__.py
│   ├── __pycache__
│   ├── send_email.py
│   ├── server.py
│   ├── settings.py
│   ├── static
│   └── templates
└── tests
├── __init__.py
├── __pycache__
Expand All @@ -72,5 +71,6 @@ More in-depth structure:
├── test_gpt.py
├── test_helper.py
└── test_server.py
```

9 directories, 38 files
<!-- STRUCTURE END -->

1 comment on commit c090f33

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src
   __init__.py00100% 
   api.py86693%30, 48, 70–71, 103–104
   art.py9367%24–25, 37
   cli.py23483%34, 50–51, 55
   gpt.py10640%16–21, 32–45
   helper.py1435264%50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 81, 92–96, 129–137, 149, 162–163, 181–183, 193, 195–196, 218–219, 256–266, 273–281
   send_email.py24240%5–48
   server.py41410%5–82
   settings.py220100% 
TOTAL35813662% 

Tests Skipped Failures Errors Time
9 0 💤 0 ❌ 0 🔥 13.499s ⏱️

Please sign in to comment.