An open API service indexing awesome lists of open source software.

https://github.com/2sem/tuist-selective-testing-sample

Sample for Tuist's Selective Testing
https://github.com/2sem/tuist-selective-testing-sample

Last synced: 4 months ago
JSON representation

Sample for Tuist's Selective Testing

Awesome Lists containing this project

README

          

# Tuist Selective Testing Sample

Demonstrates Tuist's selective testing feature with a modular architecture.

## Project Structure
graph

```
Core (base)
├── FeatureA
└── FeatureB
└── App
```

- **Modify Core**: All tests run
- **Modify FeatureA**: Only FeatureATests + AppTests run
- **Modify FeatureB**: Only FeatureBTests + AppTests run

## Setup

1. Update `fullHandle` in `Tuist.swift` with your Tuist Cloud org/project
2. Run `tuist auth login`
3. Run `tuist test` to establish baseline

## Try It

Edit any source file and run `tuist test` to see selective testing in action.

## Learn More

[Tuist Selective Testing Documentation](https://docs.tuist.dev/en/guides/features/selective-testing)