Metadata-Version: 2.4
Name: floss
Version: 0.1.0
Summary: FLOSS: Fault Localization with Spectrum-based Scoring - A Python framework for Spectrum-Based Fault Localization (SBFL)
Author: Alessandro Repola
License: MIT
Project-URL: Repository, https://github.com/alessandrorepola/floss
Project-URL: Issues, https://github.com/alessandrorepola/floss/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Debuggers
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=14.0.1
Requires-Dist: click>=8.1.8
Requires-Dist: pytest>=8.3.5
Requires-Dist: numpy>=1.24.4
Requires-Dist: coverage>=7.6.1
Requires-Dist: pytest-cov>=4.0.0
Provides-Extra: ui
Requires-Dist: streamlit>=1.45.0; python_version >= "3.9" and extra == "ui"
Requires-Dist: plotly>=5.22.0; python_version >= "3.9" and extra == "ui"
Requires-Dist: pandas>=2.0.3; python_version >= "3.9" and extra == "ui"
Provides-Extra: dev
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: pre-commit>=3.0.0; extra == "dev"
Requires-Dist: types-seaborn; extra == "dev"
Requires-Dist: bandit>=1.7.0; extra == "dev"
Requires-Dist: safety>=2.0.0; extra == "dev"
Requires-Dist: isort>=5.0.0; extra == "dev"
Dynamic: license-file

# FLOSS: Fault Localization with Spectrum-based Scoring

FLOSS is a comprehensive Python framework for automated fault localization using Spectrum-Based Fault Localization (SBFL) techniques. It provides a complete pipeline from test execution with coverage collection to interactive visualization of fault localization results.

## Table of Contents

- [Overview](#overview)
- [Architecture](#architecture)
- [Features](#features)
- [Installation](#installation)
- [Quick Start](#quick-start)
- [CLI Usage](#cli-usage)
- [Web Dashboard](#web-dashboard)
- [Configuration](#configuration)
- [Supported SBFL Formulas](#supported-sbfl-formulas)
- [Examples](#examples)
- [Project Structure](#project-structure)
- [API Reference](#api-reference)
- [Development](#development)
- [Contributing](#contributing)
- [License](#license)

## Overview

FLOSS automates the process of fault localization by:

1. **Test Execution**: Running test suites with comprehensive coverage collection
2. **Coverage Analysis**: Analyzing which code lines are executed by passing vs failing tests
3. **Suspiciousness Calculation**: Applying SBFL formulas to rank code elements by fault suspiciousness
4. **Interactive Visualization**: Providing rich web-based dashboards for exploring results

The framework supports multiple SBFL formulas and provides both command-line tools and a web-based dashboard for result analysis.

## Architecture

FLOSS follows a modular architecture with clear separation of concerns:

![Architecture Diagram](docs/imgs/floss_arch.png)

### Core Components

1. **Test Runner**: Executes tests using pytest with coverage.py integration
2. **FL Engine**: Calculates suspiciousness scores using various SBFL formulas
3. **Dashboard**: Interactive web interface for result visualization
4. **Configuration System**: Flexible configuration management
5. **SBFL Formulas**: Extensible formula implementations

## Features

### Core Functionality
- ✅ **Automated Test Execution**: Integration with pytest for seamless test running
- ✅ **Coverage Collection**: Line and branch coverage with test context information
- ✅ **Multiple SBFL Formulas**: Support for 10+ industry-standard formulas
- ✅ **Comprehensive Reporting**: JSON-based reports with detailed metadata
- ✅ **Interactive Dashboard**: Rich web-based visualization interface

### CLI Features
- ✅ **Modular Commands**: Separate commands for testing, fault localization, and visualization
- ✅ **Flexible Configuration**: File-based and command-line configuration options
- ✅ **Pipeline Integration**: Single command for complete workflow execution
- ✅ **Rich Output**: Colored terminal output with progress indicators
- ✅ **Error Handling**: Comprehensive error reporting and debugging support

### Dashboard Features
- ✅ **Multiple Visualizations**: Treemaps, sunburst charts, coverage matrices
- ✅ **Source Code Integration**: Syntax-highlighted code with suspiciousness overlay
- ✅ **Interactive Filtering**: Dynamic threshold adjustment and formula comparison
- ✅ **Export Capabilities**: Download results and visualizations
- ✅ **Responsive Design**: Works on desktop and mobile devices

## Installation

### Basic Installation

```bash
pip install floss
```

### Development Installation

```bash
git clone https://github.com/example/floss.git
cd floss
pip install -e \".[dev]\"
```

### With UI Dependencies

```bash
pip install \"floss[ui]\"
# or for development
pip install -e \".[dev,ui]\"
```

### Requirements

- Python 3.9+
- pytest
- coverage.py
- numpy
- rich
- click

Additional UI dependencies:
- streamlit
- plotly
- pandas

## Quick Start

### 1. Try a Real-World Example

The fastest way to see FLOSS in action is with our curated examples:

```bash
# Try the simple educational example
cd examples/dummy-example
floss run --source-dir src --test-dir tests
floss ui --report report.json

# Or try a real FastAPI bug
cd examples/fastapi/bug6
./setup.sh  # Downloads FastAPI with bug
cd fastapi
floss run
floss ui --report report.json
```

### 2. Basic Fault Localization on Your Project

```bash
# Navigate to your Python project
cd my_python_project

# Run complete fault localization pipeline
floss run --source-dir src --test-dir tests

# View results in interactive dashboard
floss ui --report report.json
```

### 3. Step-by-Step Workflow

```bash
# Step 1: Run tests with coverage
floss test --source-dir src --test-dir tests --output coverage.json

# Step 2: Calculate fault localization scores
floss fl --input coverage.json --output report.json --formulas ochiai tarantula dstar2

# Step 3: Launch dashboard
floss ui --report report.json --port 8501
```

### 4. Using Configuration Files

Create a `floss.conf` file:

```ini
[test]
source_dir = src
test_dir = tests
output_file = coverage.json
ignore = */__init__.py
omit = */__init__.py

[fl]
input_file = coverage.json
output_file = report.json
formulas = ochiai, tarantula, jaccard, dstar2
```

Then run:

```bash
floss run --config floss.conf
```

## CLI Usage

FLOSS provides a comprehensive command-line interface with four main commands:

### `floss test`

Runs tests with coverage collection.

```bash
floss test [OPTIONS]

Options:
  -s, --source-dir PATH     Source code directory (default: .)
  -t, --test-dir PATH       Test directory (auto-detected if not specified)
  -o, --output PATH         Output coverage file (default: coverage.json)
  -k, --test-filter TEXT    Filter tests using pytest -k pattern
  --ignore PATTERN          File patterns to ignore (multiple allowed)
  --omit PATTERN            File patterns to omit from coverage (multiple allowed)
  -c, --config PATH         Configuration file (default: floss.conf)
  -v, --verbose             Enable verbose output
  --help                    Show help message
```

**Example:**
```bash
floss test -s src -t tests -o my_coverage.json -k \"not slow\"
```

### `floss fl`

Calculates fault localization suspiciousness scores.

```bash
floss fl [OPTIONS]

Options:
  -i, --input PATH          Input coverage file (default: coverage.json)
  -o, --output PATH         Output report file (default: report.json)
  -f, --formulas FORMULA    SBFL formulas to use (multiple allowed)
  -c, --config PATH         Configuration file (default: floss.conf)
  -v, --verbose             Enable verbose output
  --help                    Show help message
```

**Example:**
```bash
floss fl -i coverage.json -o results.json -f ochiai -f tarantula -f dstar2
```

### `floss run`

Executes the complete fault localization pipeline.

```bash
floss run [OPTIONS]

Options:
  -s, --source-dir PATH     Source code directory (default: .)
  -t, --test-dir PATH       Test directory (auto-detected if not specified)
  -o, --output PATH         Output report file (default: report.json)
  -k, --test-filter TEXT    Filter tests using pytest -k pattern
  --ignore PATTERN          File patterns to ignore (multiple allowed)
  --omit PATTERN            File patterns to omit from coverage (multiple allowed)
  -f, --formulas FORMULA    SBFL formulas to use (multiple allowed)
  -c, --config PATH         Configuration file (default: floss.conf)
  -v, --verbose             Enable verbose output
  --help                    Show help message
```

**Example:**
```bash
floss run -s src -t tests -o final_report.json -f ochiai -f dstar2 --ignore \"*/migrations/*\"
```

### `floss ui`

Launches the interactive web dashboard.

```bash
floss ui [OPTIONS]

Options:
  -r, --report PATH         Report file to visualize (default: report.json)
  -p, --port INTEGER        Port for the dashboard (default: 8501)
  --no-open                 Don't auto-open browser
  -v, --verbose             Enable verbose output
  --help                    Show help message
```

**Example:**
```bash
floss ui -r my_report.json -p 8080 --no-open
```

## Web Dashboard

The FLOSS dashboard provides an interactive web interface for exploring fault localization results. Built with Streamlit and Plotly, it offers multiple visualization modes and analysis tools.

### Dashboard Features

#### 1. **Overview Page**
- Project summary and statistics
- Test execution results
- Formula comparison overview
- Quick navigation to detailed views

#### 2. **Treemap Visualization**
- Hierarchical view of project structure
- Color-coded suspiciousness levels
- Interactive drill-down capabilities
- Configurable size and color metrics

#### 3. **Sunburst Chart**
- Circular hierarchical visualization
- Multi-level project exploration
- Dynamic filtering and zooming
- Suspiciousness distribution analysis

#### 4. **Coverage Matrix**
- Test-to-code coverage visualization
- Pass/fail test indicators
- Interactive coverage exploration
- Export capabilities

#### 5. **Source Code Viewer**
- Syntax-highlighted source code
- Suspiciousness score overlays
- Line-by-line analysis
- Multiple formula comparison

#### 6. **Advanced Analytics**
- Statistical analysis of suspiciousness scores
- Formula effectiveness comparison
- Threshold-based filtering
- Custom metric calculations

### Navigation and Usage

The dashboard uses a sidebar navigation system with the following sections:

1. **File Selection**: Load reports from file system
2. **Visualization Type**: Choose between different chart types
3. **Formula Selection**: Select SBFL formulas to analyze
4. **Filtering Options**: Apply thresholds and filters
5. **Display Settings**: Customize visualization parameters

### Interactive Features

- **Dynamic Filtering**: Adjust suspiciousness thresholds in real-time
- **Multi-Formula Comparison**: View results from multiple formulas simultaneously
- **Export Functions**: Download visualizations and data
- **Responsive Design**: Optimized for desktop and mobile viewing
- **Keyboard Shortcuts**: Quick navigation and actions

## Configuration

FLOSS supports flexible configuration through configuration files and command-line arguments.

### Configuration File Format

FLOSS uses INI-style configuration files with two main sections:

```ini
[test]
# Test execution configuration
source_dir = src                    # Source code directory
test_dir = tests                    # Test directory (optional)
output_file = coverage.json         # Coverage output file
ignore = */__init__.py             # Patterns to ignore for test discovery
omit = */__init__.py               # Patterns to omit from coverage

[fl]
# Fault localization configuration
input_file = coverage.json          # Input coverage file
output_file = report.json           # Output report file
formulas = ochiai, tarantula, jaccard, dstar2  # SBFL formulas to use
```

### Configuration Precedence

Configuration values are resolved in the following order (highest to lowest priority):

1. Command-line arguments
2. Configuration file values
3. Default values

## Supported SBFL Formulas

FLOSS implements 10+ industry-standard SBFL formulas:

### Core Formulas

| Formula | Description | Reference |
|---------|-------------|-----------|
| **Ochiai** | Most effective general-purpose formula | Ochiai (1957) |
| **Tarantula** | Classic fault localization formula | Jones & Harrold (2005) |
| **Jaccard** | Set similarity-based formula | Jaccard (1912) |
| **D-Star** | Optimized binary formula (D*, D**, D***) | Wong et al. (2014) |

### Additional Formulas

| Formula | Description | Use Case |
|---------|-------------|----------|
| **Kulczynski2** | Symmetric similarity measure | Balanced precision/recall |
| **Naish1** | Binary classification formula | Clear fault/no-fault distinction |
| **Russell-Rao** | Simple ratio-based formula | Baseline comparisons |
| **Sorensen-Dice** | Harmonic mean of precision/recall | F1-score equivalent |
| **SBI** | Similarity-based index | Specialized applications |

### Formula Selection Guidelines

- **Ochiai**: Best general-purpose choice, effective across different scenarios
- **Tarantula**: Good baseline, widely studied and compared
- **D-Star**: Excellent for projects with many passing tests
- **Jaccard**: Simple and interpretable, good for initial analysis

### Custom Formulas

FLOSS supports custom formula implementation through the `SBFLFormula` base class:

```python
from floss.formulas.base import SBFLFormula

class CustomFormula(SBFLFormula):
    def calculate(self, n_cf: int, n_nf: int, n_cp: int, n_np: int) -> float:
        # Implement your formula logic
        return custom_calculation(n_cf, n_nf, n_cp, n_np)
```

## Examples

FLOSS includes comprehensive real-world examples that demonstrate fault localization on actual software projects with known bugs. These examples provide hands-on learning opportunities and showcase FLOSS' effectiveness across different domains.

### Available Examples

#### 🌐 FastAPI Framework Examples
Real bugs from the FastAPI web framework, sourced from the [BugsInPy](https://github.com/soarsmu/BugsInPy) dataset:

**16 comprehensive bugs covering diverse scenarios:**
- **Input/Output Validation**: [Bug #3](examples/fastapi/bug3/), [Bug #4](examples/fastapi/bug4/), [Bug #9](examples/fastapi/bug9/), [Bug #11](examples/fastapi/bug11/)
- **Middleware & Dependencies**: [Bug #6](examples/fastapi/bug6/), [Bug #8](examples/fastapi/bug8/), [Bug #13](examples/fastapi/bug13/)
- **Schema & Documentation**: [Bug #2](examples/fastapi/bug2/), [Bug #7](examples/fastapi/bug7/)
- **Response Handling**: [Bug #1](examples/fastapi/bug1/), [Bug #5](examples/fastapi/bug5/)
- **Advanced Features**: [Bug #10](examples/fastapi/bug10/), [Bug #12](examples/fastapi/bug12/), [Bug #15](examples/fastapi/bug15/), [Bug #16](examples/fastapi/bug16/)
- **Error Handling**: [Bug #14](examples/fastapi/bug14/)
- **Multi-bug Scenarios**: [Multi-bugs](examples/fastapi/multi-bugs/) - Complex scenarios with multiple issues

#### 🏗️ Template Engine Examples
Real bugs from the Cookiecutter project templating tool:

- **[Bug #1](examples/cookiecutter/bug1/)** - File encoding issue in context parsing
- **[Bug #2](examples/cookiecutter/bug2/)** - Template variable substitution error

#### 📊 Data Science Examples
- **[PyGraphistry](examples/pygraphistry/)** - Graph visualization library fault localization

#### 🎓 Educational Examples
- **[Dummy Example](examples/dummy-example/)** - Simple synthetic bug for learning FLOSS basics

### Quick Example Walkthrough

```bash
# FastAPI examples (centralized setup)
cd examples/fastapi
./setup.sh 6  # Setup specific bug (1-16 available)
cd fastapi && floss run

# Cookiecutter examples
cd examples/cookiecutter
./setup.sh 1  # Setup bug 1 or 2
cd cookiecutter && floss run

# View interactive results
floss ui --report report.json
```

### Key Features of Examples

**🔧 Patch Files**: Every bug includes a `bug_patch.txt` file showing the exact fix
**📊 Pre-generated Reports**: Compare your results with expected outputs
**🛠️ Automated Setup**: One-command environment preparation
**📖 Comprehensive Documentation**: Detailed bug descriptions and analysis

### Example Categories

| Category | Domain | Complexity | Python Version | Setup Time |
|----------|--------|------------|----------------|------------|
| **FastAPI** | Web APIs | Intermediate | 3.8.3 (exact) | ~3-5 minutes |
| **PyGraphistry** | Data Visualization | Advanced | 3.7+ | ~2-3 minutes |
| **Dummy** | Educational | Beginner | 3.9+ | < 1 minute |

### Learning Path

1. **Start with Dummy Example** - Learn FLOSS basics with a simple, controlled bug
2. **Explore FastAPI Bug #6** - Understand dependency injection fault patterns
3. **Compare FastAPI Bugs** - See how different bug types affect fault localization
4. **Try PyGraphistry** - Experience fault localization on scientific computing code

### Example Features

Each example includes:
- ✅ **Automated setup scripts** - One-command environment preparation
- ✅ **Pre-configured settings** - Optimized FLOSS configurations
- ✅ **Detailed documentation** - Bug descriptions and analysis guides
- ✅ **Expected results** - Clear guidance on what to look for
- ✅ **Learning objectives** - Educational goals and takeaways

### Real-World Bug Patterns

The examples demonstrate common bug categories:

- **API Validation Bugs** (FastAPI Bug #2, #3, #11) - Schema and input validation issues
- **Framework Integration Bugs** (FastAPI Bug #6) - Dependency injection and lifecycle problems
- **Data Processing Bugs** (PyGraphistry) - Algorithmic and visualization issues
- **Logical Bugs** (Dummy Example) - Basic computational errors

For detailed setup instructions and analysis guides, see the [examples directory](examples/).

## Project Structure

```
root/
├── floss/                        # Main package
│   ├── __init__.py                 # Package initialization
│   ├── core/                       # Core components
│   │   ├── cli/                    # Command-line interface
│   │   │   ├── __init__.py
│   │   │   └── main.py             # CLI entry points
│   │   ├── test/                   # Test execution components
│   │   │   ├── __init__.py
│   │   │   ├── config.py           # Test configuration
│   │   │   └── runner.py           # pytest integration
│   │   ├── fl/                     # Fault localization engine
│   │   │   ├── __init__.py
│   │   │   ├── config.py           # FL configuration
│   │   │   ├── data.py             # Coverage data structures
│   │   │   └── engine.py           # FL calculation engine
│   │   └── formulas/               # SBFL formula implementations
│   │       ├── __init__.py
│   │       ├── base.py             # Abstract base class
│   │       └── sbfl_formulas.py    # Formula implementations
│   └── ui/                         # Web dashboard
│       ├── __init__.py
│       └── dashboard.py            # Streamlit dashboard
├── tests/                          # Test suite
│   ├── test_cli.py                 # CLI tests
│   ├── test_e2e.py                 # End-to-end tests
│   ├── test_fl.py                  # FL engine tests
│   ├── test_formulas.py            # Formula tests
│   └── ...                         # Additional test files
├── examples/                       # Example projects
│   └── ex1/                        # Sample project
│       ├── floss.conf            # Example configuration
│       ├── src/                    # Example source code
│       └── tests/                  # Example tests
├── pyproject.toml                  # Project configuration
├── pytest.ini                      # pytest configuration
├── LICENSE                         # MIT license
└── README.md                       # This file
```

## API Reference

### Core Classes

#### `TestRunner`
Executes tests with coverage collection.

```python
from floss.test import TestRunner, TestConfig

config = TestConfig(source_dir="src", test_dir="tests")
runner = TestRunner(config)
result = runner.run_tests()
```

#### `FLEngine`
Calculates fault localization scores.

```python
from floss.fl import FLEngine, FLConfig

config = FLConfig(formulas=["ochiai", "tarantula"])
engine = FLEngine(config)
engine.calculate_suspiciousness("coverage.json", "report.json")
```

#### `SBFLFormula`
Base class for implementing custom formulas.

```python
from floss.formulas.base import SBFLFormula

class MyFormula(SBFLFormula):
    def calculate(self, n_cf, n_nf, n_cp, n_np):
        # Your implementation
        return score
```

### Configuration Classes

#### `TestConfig`
Configuration for test execution.

```python
from floss.test.config import TestConfig

config = TestConfig(
    source_dir="src",
    test_dir="tests",
    output_file="coverage.json",
    ignore_patterns=["*/__init__.py"],
    omit_patterns=["*/test_*"]
)
```

#### `FLConfig`
Configuration for fault localization.

```python
from floss.fl.config import FLConfig

config = FLConfig(
    input_file="coverage.json",
    output_file="report.json",
    formulas=["ochiai", "tarantula", "dstar2"]
)
```

### Dashboard Integration

```python
from floss.ui.dashboard import launch_dashboard

launch_dashboard(
    report_file="report.json",
    port=8501,
    auto_open=True
)
```

```python
from floss.ui.dashboard import launch_dashboard

launch_dashboard(
    report_file="report.json",
    port=8501,
    auto_open=True
)
```

## Development

### Setting Up Development Environment

```bash
# Clone the repository
git clone https://github.com/example/floss.git
cd floss

# Create virtual environment
python -m venv venv
source venv/bin/activate  # On Windows: venv\\Scripts\\activate

# Install in development mode
pip install -e ".[dev,ui]"

# Install pre-commit hooks
pre-commit install
```

### Running Tests

```bash
# Run all tests
python -m pytest tests/ -v

# Run with coverage
python -m pytest tests/ --cov=floss/ --cov-report=html

# Run specific test categories
python -m pytest tests/test_formulas.py -v
python -m pytest tests/test_e2e.py -v
```

### Testing Examples

FLOSS includes automated testing for all examples through GitHub Actions:

```bash
# Test the dummy example locally
cd examples/dummy-example
floss run --source-dir src --test-dir tests

# Test FastAPI examples (requires setup)
cd examples/fastapi/bug6
./setup.sh
cd fastapi
floss run

# Test PyGraphistry example (requires setup)
cd examples/pygraphistry
./setup.sh
cd PyGraphistry
floss test --source-dir graphistry --test-dir tests
```

#### CI/CD Workflows

The project includes two GitHub Actions workflows:

1. **Main CI (`ci.yml`)**: Tests core FLOSS functionality
2. **Examples CI (`examples.yml`)**: Tests all examples including:
   - Dummy example validation
   - FastAPI bug examples (with Python 3.8.3)
   - PyGraphistry example setup
   - Documentation validation
   - Integration testing

The examples workflow automatically:
- Sets up required Python versions for each example
- Runs automated setup scripts
- Executes FLOSS on real bugs
- Validates output format and structure
- Checks documentation completeness

### Code Quality

FLOSS uses several tools to maintain code quality. All these checks are enforced in the CI pipeline.

#### Quick Commands

```bash
# Alternative: Use the dev script (Windows PowerShell)
.\dev.ps1 quality

# Alternative: Use make (Linux/macOS)
make quality
```

#### Individual Tools

```bash
# Code formatting
black --check --diff floss/
black floss/  # to apply fixes

# Import sorting
isort --check-only --diff floss/
isort floss/  # to apply fixes

# Code linting
flake8 floss/

# Type checking
mypy floss/

# Run tests
pytest tests/ -v
```

#### Pre-commit Hooks

To automatically run quality checks before each commit:

```bash
pip install pre-commit
pre-commit install
```

All quality checks must pass before code can be merged. The CI pipeline runs:
- Code formatting validation (Black)
- Import sorting validation (isort)
- Style checking (Flake8)
- Type checking (MyPy)
- Test execution

### Adding New SBFL Formulas

1. Implement the formula in `floss/core/formulas/sbfl_formulas.py`
2. Add it to the `AVAILABLE_FORMULAS` dict in `floss/core/fl/engine.py`
3. Export it from `floss/core/formulas/__init__.py`
4. Add tests in `tests/test_formulas.py`

### Contributing

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Make your changes
4. Add tests for new functionality
5. Ensure all tests pass
6. Commit your changes (`git commit -m 'Add amazing feature'`)
7. Push to the branch (`git push origin feature/amazing-feature`)
8. Open a Pull Request

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Acknowledgments

- Built on top of excellent Python tools: pytest, coverage.py, streamlit, plotly
- Inspired by fault localization research and tools like GZoltar
- SBFL formulas based on academic literature and industry best practices
- Real project examples from BugsInPy and BugSwarm

---

For more information, visit our [documentation](https://github.com/alessandrorepola/floss) or open an [issue](https://github.com/alessandrorepola/floss/issues).
