diff --git a/.dockerignore b/.dockerignore index d3d58a93..e09bb3af 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ .git research -anarchy imprint \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c3e5f78..77438b87 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,14 +4,14 @@ on: pull_request: types: [opened, synchronize, reopened, ready_for_review] paths-ignore: - - "anarchy/**" + - "research/**" - "**.ipynb" - "**.md" push: branches: - main paths-ignore: - - "anarchy/**" + - "research/**" - "**.ipynb" - "**.md" jobs: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 67a2ed45..e473e554 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,23 +5,19 @@ repos: hooks: - id: black-jupyter language_version: python3 - exclude: anarchy - repo: https://gitlab.com/pycqa/flake8 rev: 5.0.4 hooks: - id: flake8 - exclude: anarchy - repo: https://github.com/asottile/reorder_python_imports rev: v3.9.0 hooks: - id: reorder-python-imports - exclude: anarchy - repo: https://github.com/mwouts/jupytext rev: v1.14.1 hooks: - id: jupytext args: [--from, ipynb, --to, "md"] - exclude: anarchy - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.3.0 hooks: diff --git a/README.md b/README.md index 18c01f7c..fc9dfc34 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,10 @@ Directories: - `imprint` - our open source tools. [Open source repo](https://github.com/Confirm-Solutions/imprint) -- `outlaw` - our fast INLA tools. +- `confirm` - our code base! +- `tests` - our tests. +- `docs` - documentation. - `research` - Research! Stuff in here might be in various of states of rough/polished. -- `anarchy` - [Do whatever you want here.](anarchy/README.md) - `cloud` - [tools for working on cloud infrastructure including AWS and Codespaces.](cloud/README.md) - Doing something new? Just make a new top level folder. diff --git a/docs/standards.md b/docs/standards.md index 5781376f..396d7a45 100644 --- a/docs/standards.md +++ b/docs/standards.md @@ -8,7 +8,7 @@ I wrote this as a little placeholder because I think it'd be good to have some s - Important code should probably be reviewed. - You should probably be pair programming more than you are. - Iteration time is unimaginably important. -- Anything goes in the `anarchy` folder. +- Pretty much anything goes in the `research` folder. - Tests are critical to correctness, but try not to let testing get in the way of doing stuff. - Use `black` for formatting. - Follow PEP8 suggestions where possible. This is almost entirely automated by `flake8`.