Skip to content

Commit

Permalink
Fix #542: Add code climate usage to developer flow READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
trentmc committed Jan 16, 2024
1 parent 995a103 commit 9422c82
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions READMEs/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ pylint pdr_backend/*
black ./
```

Check code coverage:
```console
coverage run --omit="*test*" -m pytest # Run all. For subset, add eg: pdr_backend/lake
coverage report # show results
```

### Local Usage: Run a custom agent

Let's say you want to change the trader agent, and use off-the-shelf agents for everything else. Here's how.
Expand Down
6 changes: 6 additions & 0 deletions READMEs/vps.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,3 +301,9 @@ pylint pdr_backend/*
# auto-fix some pylint complaints like whitespace
black ./
```

Check code coverage:
```console
coverage run --omit="*test*" -m pytest # Run all. For subset, add eg: pdr_backend/lake
coverage report # show results
```

0 comments on commit 9422c82

Please sign in to comment.