Metadata-Version: 2.1
Name: boba-fetch
Version: 0.1.0
Summary: A script for repeatedly polling files on a remote host using SSH and then downloading them using rsync.
License: GPL-3.0-or-later
Author-email: Eugene Kovalev <eugene@kovalev.systems>
Requires-Python: >=3.8
Requires-Dist: click-path>=0.0.5
Requires-Dist: click>=8.0.3
Requires-Dist: fabric>=2.6.0
Requires-Dist: secretstorage>=3.3.1
Requires-Dist: twine>=3.8.0
Project-URL: documentation, https://gitlab.com/abraxos/boba
Project-URL: homepage, https://gitlab.com/abraxos/boba
Project-URL: repository, https://gitlab.com/abraxos/boba
Description-Content-Type: text/markdown

# Boba

A tool for polling a remote source over SSH and syncing new files from said source using `rsync`.

## Setup & Usage

### Installation

TODO

### Configuration

TODO

### Usage

The key reference for using `boba` is:

```bash
boba --help
```

## Development

### Standards

- Be excellent to each other
- Code coverage must be at 100% for all new code, or a good reason must be provided for why a given bit of code is not covered.
  - Example of an acceptable reason: "There is a bug in the code coverage tool and it says its missing this, but its not".
  - Example of unacceptable reason: "This is just exception handling, its too annoying to cover it".
- The code must pass the following analytics tools. Similar exceptions are allowable as in rule 2.
  - `pylint --disable=C0103,C0111,W1203,R0903,R0913 --max-line-length=120 testudo`
  - `flake8 --max-line-length=120 ...`
  - `mypy --ignore-missing-imports --follow-imports=skip --strict-optional ...`
- All incoming information from users, clients, and configurations should be validated.
- All internal arguments passing should be typechecked whenever possible with `typeguard.typechecked`

### Development Setup

Using [pdm](https://pdm.fming.dev/) install from inside the repo directory:

```bash
pdm install
```

This will set up a virtualenv which you can always run specific commands with `pdm run ...`.

#### IDE Setup

**Sublime Text 3**

```bash
curl -sSL https://gitlab.com/-/snippets/2066312/raw/master/poetry.sublime-project.py | pdm run python
```

#### Development

### Testing

All testing should be done with `pytest` which is installed with the `--dev` requirements (`pdm --dev install ...`).

To run all the unit tests, execute the following from the repo directory:

```bash
pdm run pytest
```

This should produce a coverage report in `/path/to/dewey-api/htmlcov/`

While developing, you can use [`watchexec`](https://github.com/watchexec/watchexec) to monitor the file system for changes and re-run the tests:

```bash
watchexec -r -e py,yaml pdm run pytest
```

To run a specific test file:

```bash
pdm run pytest tests/unit/test_cli.py
```

To run a specific test:

```bash
pdm run pytest tests/unit/test_cli.py::test_cli_basics
```

For more information on testing, see the `pytest.ini` file as well as the [documentation](https://docs.pytest.org/en/stable/).

