Skip to content
Snippets Groups Projects
Unverified Commit cf67edae authored by Emanuele Tajariol's avatar Emanuele Tajariol Committed by GitHub
Browse files

[Fixes #11574] Fix CircleCI black tests (#11580)


* [Fixes #11574] Fix CircleCI black tests

* [Fixes #11574] Fix CircleCI black tests

* [Fixes #11574] Fix CircleCI black tests

* [Fixes #11574] Fix CircleCI black tests

* Adding black

* Try some failing changes

* Try some failing changes

* Try some failing changes

* Fix forced error

* Update api.py

* Run flake action on master and any 4.x branch

---------

Co-authored-by: default avatarGiovanni Allegri <giohappy@gmail.com>
parent c3da6186
Branches
No related tags found
No related merge requests found
......@@ -90,8 +90,6 @@ jobs:
- run:
name: Run code quality checks
command: |
docker-compose --env-file .env_test -f docker-compose-test.yml exec django bash -c 'black --check geonode'
docker-compose --env-file .env_test -f docker-compose-test.yml exec django bash -c 'flake8 geonode'
docker-compose --env-file .env_test -f docker-compose-test.yml exec django bash -c 'codecov; bash <(curl -s https://codecov.io/bash) -t 2c0e7780-1640-45f0-93a3-e103b057d8c8'
working_directory: ./
......
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ "master", 4.0.x, 4.1.x ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master", 4.0.x, 4.1.x ]
schedule:
- cron: '38 4 * * 5'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript', 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
name: "Code formatting"
on:
push:
branches: [ master, 4.* ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master, 4.* ]
jobs:
validate:
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python-version}}
- name: Install flake8 & black
run: pip install flake8 black
- name: "Check: flake8"
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 geonode --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 geonode --count --statistics
- name: "Check: black"
run: black --check geonode
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment