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
- Host: GitHub
- URL: https://github.com/2sem/tuist-selective-testing-sample
- Owner: 2sem
- Created: 2025-12-17T02:39:31.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-02-19T10:26:52.000Z (4 months ago)
- Last Synced: 2026-02-19T15:04:55.766Z (4 months ago)
- Language: Swift
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tuist Selective Testing Sample
Demonstrates Tuist's selective testing feature with a modular architecture.
## Project Structure

```
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)