Skip to content

Commit

Permalink
More TODO notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed May 9, 2024
1 parent 57e5927 commit 3c10db0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* joaander
6 changes: 6 additions & 0 deletions DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,3 +298,9 @@ status may take a long time, so it should display a progress bar.
- **whole group**: A **submission group** that is identical to the **group** found
without applying the additional submission filters.
- **workspace**: The location on the file system that contains **directories**.

# TODO: Pull request template
# TODO: Issue templates?
# TODO: Dependabot configuration
# TODO: readthedocs builds
# TODO: logo
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Row

[![GitHub Actions](https://github.com/glotzerlab/row/actions/workflows/test.yaml/badge.svg?branch=trunk)](https://github.com/glotzerlab/row/actions/workflows/test.yaml)
[![Read the Docs](https://img.shields.io/readthedocs/row/latest.svg)](https://row.readthedocs.io/)
[![Contributors](https://img.shields.io/github/contributors-anon/glotzerlab/row.svg?style=flat)](https://row.readthedocs.io/en/latest/contributors.html)
[![License](https://img.shields.io/badge/license-BSD--3--Clause-green.svg)](LICENSE)

Row is a command line tool that helps you manage workflows on HPC resources. Define
**actions** in a workflow configuration file that apply to **groups** of **directories**
in your **workspace**. **Submit** actions to your HPC **scheduler**. Row tracks which
Expand Down
2 changes: 2 additions & 0 deletions doc/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ create-missing = false
# You also need to install https://github.com/Michael-F-Bryan/mdbook-linkcheck.
# [output.linkcheck]
# follow-web-links = true

# TODO: Add page footer.
3 changes: 0 additions & 3 deletions src/workflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,6 @@ impl ResourceCost {
impl fmt::Display for ResourceCost {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut formatter = Formatter::new();
// TODO: choose decimals more intelligently here.
// Currently: 4,499,000 will print as 4M, but 449,900 will print as 450K.
// It would be nice if we always kept 3 sig figs, giving 4.50M in the first case.
formatter.with_decimals(0);
formatter.with_separator("");

Expand Down

0 comments on commit 3c10db0

Please sign in to comment.