Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,37 @@ steps:
- echo DRONE_STAGE_MACHINE ${DRONE_STAGE_MACHINE}

- name: sleep-for-opencti
image: python:3.11
image: python:3.14
commands:
- sleep 180
- name: client-test-39
image: python:3.9
image: python:3.14
commands:
- pip3 install -r requirements.txt --user
- pip3 install -r test-requirements.txt --user
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone
- name: client-test-310
image: python:3.10
image: python:3.14
commands:
- pip3 install -r requirements.txt --user
- pip3 install -r test-requirements.txt --user
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone
- name: client-test-311
image: python:3.11
image: python:3.14
commands:
- pip3 install -r requirements.txt --user
- pip3 install -r test-requirements.txt --user
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone
- name: client-test-312
image: python:3.12
image: python:3.14
commands:
- pip3 install -r requirements.txt --user
- pip3 install -r test-requirements.txt --user
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone

# always run the examples last since they don't clean up
- name: example-tests
image: python:3.12
image: python:3.14
commands:
- pip3 install -r requirements.txt --user
- pip3 install .
Expand Down