Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main to typer #4637

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4ef5f8d
changes in poetry for typer version
Shellyber Oct 13, 2024
557e558
-
Shellyber Oct 27, 2024
e12a641
-
Shellyber Oct 29, 2024
495ffd9
Convert the download and upload commands to typer format
Shellyber Oct 29, 2024
89eceb3
Adding more commands
Shellyber Oct 29, 2024
6a21e44
Another batch of commands to typer
Shellyber Oct 30, 2024
e44f819
Last commands batches + help
Shellyber Oct 31, 2024
22761f2
Reverted some unnecessary changes.
Shellyber Oct 31, 2024
5fcadd4
Reverted some unnecessary changes.
Shellyber Oct 31, 2024
443d17c
Some tests fix - importing app instead of main
Shellyber Oct 31, 2024
e973539
Some fixes
Shellyber Nov 3, 2024
419bb67
lock file
Shellyber Nov 3, 2024
45cb6e9
More fixes
Shellyber Nov 5, 2024
1c59c32
More updates
Shellyber Nov 6, 2024
584cc38
pre-commit
Shellyber Nov 6, 2024
c500c68
modeling rules addon and some graph fix
Shellyber Nov 7, 2024
db76840
Merge branch 'master' into main-to-typer
Shellyber Nov 7, 2024
c75dec7
Updated typer runner
Shellyber Nov 7, 2024
f720a55
Merge from master
Shellyber Nov 10, 2024
e130e5b
Fixing mypy issues
Shellyber Nov 10, 2024
ee5df32
Logging fixes
Shellyber Nov 10, 2024
e43dc1f
Logging fixes
Shellyber Nov 10, 2024
e3674f0
Logging fixes
Shellyber Nov 10, 2024
f9acc7a
More fixes
Shellyber Nov 10, 2024
64b836b
-
Shellyber Nov 10, 2024
91e3282
Flag fixes
Shellyber Nov 10, 2024
685fc00
More test fixes
Shellyber Nov 12, 2024
eb307a3
More test fixes :(
Shellyber Nov 12, 2024
ad424d5
Merge from master
Shellyber Nov 12, 2024
995d560
Moved lint as well and most test fixes
Shellyber Nov 13, 2024
e9a7277
More test fixes, almost done
Shellyber Nov 13, 2024
99c96dd
More test fixes, almost done
Shellyber Nov 14, 2024
940f2e0
Merge branch 'master' into main-to-typer
Shellyber Nov 14, 2024
cefa659
Merge from master
Shellyber Nov 14, 2024
87b37fa
Check python version for pip install
Shellyber Nov 14, 2024
8b17e66
import fixes
Shellyber Nov 14, 2024
7a747f6
lock file
Shellyber Nov 14, 2024
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
10 changes: 5 additions & 5 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -357,16 +357,16 @@ jobs:
run: |
source $(poetry env info --path)/bin/activate
cd content
mkdir -p test-graph-commands
mkdir -p ./test-graph-commands/content_graph
# create content graph from scratch
demisto-sdk create-content-graph
demisto-sdk graph create
# clean import folder
sudo rm -rf /var/lib/neo4j/import
# Update content graph from the bucket
demisto-sdk update-content-graph -g -o ./test-graph-commands/content_graph
demisto-sdk graph update -g -o ./test-graph-commands/content_graph

# Update content graph from the the previous content graph that was created/built
demisto-sdk update-content-graph -i ./test-graph-commands/content_graph/xsoar.zip -o ./test-graph-commands/content_graph
demisto-sdk graph update -i ./test-graph-commands/content_graph/xsoar.zip -o ./test-graph-commands/content_graph

- name: Upload artifacts
if: always()
Expand Down Expand Up @@ -477,7 +477,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.11"
cache: "pip"

- name: pip intsall current project
Expand Down
Loading
Loading