File size: 1,064 Bytes
5d2d720
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Contributing to Warbler CDA

Thank you for your interest in contributing to Warbler CDA!

## Development Setup

1. Clone the repository:

   ```bash
   git clone https://gitlab.com/tiny-walnut-games/the-seed.git
   cd the-seed/warbler-cda-package
   ```

2. Run setup:

   ```bash
   ./setup.sh
   ```

3. Install development dependencies:

   ```bash
   pip install -e ".[dev]"
   ```

## Running Tests

```bash
# Run all tests
pytest

# Run with coverage
pytest --cov=warbler_cda --cov-report=html

# Run specific test
pytest tests/test_retrieval_api.py -v
```

## Code Style

We use:

- **Black** for code formatting
- **Flake8** for linting
- **MyPy** for type checking

```bash
# Format code
black warbler_cda/

# Lint
flake8 warbler_cda/

# Type check
mypy warbler_cda/
```

## Pull Request Process

1. Create a feature branch
2. Make your changes
3. Add tests for new functionality
4. Ensure all tests pass
5. Update documentation
6. Submit a merge request

## Questions?

Open an issue on GitLab: <https://gitlab.com/tiny-walnut-games/the-seed/-/issues>