-
Notifications
You must be signed in to change notification settings - Fork 1
Running Fireant
Matthew Treadwell edited this page Apr 9, 2021
·
2 revisions
In order to run locally, you must have python 3.9+, JDK 11, and Apache ant.
All python packages from requirements.txt
must also be installed.
After installing dependencies, Fireant can run from the command line.
python main.py
In order to run with docker, ensure docker is installed. The following commands will compile and run the docker container for fireant.
docker image build -t fireant-ci/fireant .
docker run -it fireant-ci/fireant
Ensure pytest is installed. Unit tests can be run with pytest in the main directory.
pytest