Skip to content

Commit

Permalink
remove testing in CCI, its in GA
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Retterer <[email protected]>
  • Loading branch information
bretterer committed Oct 18, 2024
1 parent d8fb086 commit bdc37ee
Showing 1 changed file with 1 addition and 35 deletions.
36 changes: 1 addition & 35 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,7 @@ orbs:
aws-cli: circleci/[email protected]

jobs:
build_and_test:
executor: python/default
steps:
- checkout
- python/install-packages:
pkg-manager: pip
- run:
name: Build
command: python setup.py build
- run:
name: Run Unit Tests
command: pytest tests/unit
- run:
name: Run Integration Tests
command: pytest tests/integration
snyk-scan:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace: # Allows for sharing of build-workspace (containing downloaded dependencies) (optional)
at: ~/project # This is the working directory for CCI containers, change if necessary
- checkout # Might not need this if you have "persist_to_workspace" and "attach_workspace"
- run: | # Might not need this if you have "persist_to_workspace" and "attach_workspace"
pip install -r requirements.txt
- platform-helpers-general/step-run-snyk-monitor:
scan-all-projects: true
skip-unresolved: false
run-on-non-main: true

reversing-labs:
docker:
- image: cimg/python:3.10
Expand Down Expand Up @@ -78,13 +51,6 @@ jobs:
--suppress_output
workflows:
"Circle CI Tests":
jobs:
- build_and_test
- snyk-scan:
context:
- static-analysis
name: execute-snyk

"Malware Scanner":
jobs:
Expand Down

0 comments on commit bdc37ee

Please sign in to comment.