Django
Running the pre-built Django pipeline directly
Run the following command to run the pre-built Django pipeline without having to initialize a project:
- Dagger
- Wasm
fluentci run django djangoTests
fluentci run --wasm django djangoTests
Add Django Pipeline to your project
Run the following command to add a Django pipeline to your project:
fluentci init -t django
This will create a .fluentci
directory in your project, feel free to customize the pipeline for your needs.
You can then run the following command to start the pipeline:
fluentci run .
Jobs
Job | Description |
---|---|
djangoTests | Run your tests |
Programmatic usage
You can also use this pipeline programmatically:
import { djangoTests } from "jsr:@fluentci/django";
await djangoTests();