Skip to content

Commit

Permalink
Merge pull request #123 from SEKOIA-IO/feat/improve_module_generator
Browse files Browse the repository at this point in the history
Improve module creation script
  • Loading branch information
squioc authored Jun 14, 2024
2 parents d8c8814 + db606ca commit 1536194
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/bin/bash
poetry add sekoia-automation-sdk@latest
poetry lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10
FROM python:3.11

WORKDIR /app

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@
"description": "{{cookiecutter.module_description}}",
"name": "{{cookiecutter.module_name}}",
"uuid": "{{ uuid4() }}",
"docker": "sekoia-automation-module-{{cookiecutter.module_name.lower()}}",
"version": "1.0"
"version": "0.1.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@
from tempfile import mkdtemp

import pytest

from sekoia_automation import constants


@pytest.fixture
def symphony_storage():
def data_storage():
original_storage = constants.DATA_STORAGE
constants.DATA_STORAGE = mkdtemp()

yield constants.DATA_STORAGE

rmtree(constants.DATA_STORAGE)
constants.SYMPHONY_STORAGE = original_storage
constants.DATA_STORAGE = original_storage

0 comments on commit 1536194

Please sign in to comment.