Skip to content

Commit

Permalink
Merge pull request #585 from iKostanOrg/master
Browse files Browse the repository at this point in the history
Merge from master
  • Loading branch information
ikostan authored Dec 26, 2024
2 parents e1efd56 + 225cb14 commit 6c66363
Show file tree
Hide file tree
Showing 2,425 changed files with 7,502 additions and 14,136 deletions.
1 change: 1 addition & 0 deletions .codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ languages:
extensions:
- '.md'
exclude_paths:
- 'deprecated/'
- 'docs/**'
- 'allure-report/**'
- 'img/**'
Expand Down
16 changes: 16 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,19 @@ checks:
plugins:
duplication:
enabled: false
exclude_patterns:
- ".circleci/"
- ".github/"
- ".venv/"
- "docs/"
- "deprecated/"
- "img/"
- "**/node_modules/"
- "script/"
- "**/spec/"
- "**/vendor/"
- "**/*_test.go"
- "**/*.d.ts"
- "allure-report/"
- "allure-results/"
- "*.txt"
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# include = */src/*
# omit anything in a virtualenv directory anywhere
omit =
/deprecated/*
/home/travis/virtualenv/*
*.yml
/home/travis/img/*
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/flake8_kyu7.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
name: Flake8 for kyu7

on: # yamllint disable-line rule:truthy
push:
branches:
- 'kyu7'

permissions:
contents: read
pull-requests: read

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.x"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
# This is the version of the action for setting up Python,
# not the Python version.
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current
# Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
pip install flake8
- name: Check to make sure that the module is in your Python path
run: |
echo $PYTHONPATH
- name: Lint with flake8
# yamllint disable rule:line-length
# stop the build if there are Python syntax errors or undefined names
# exit-zero treats all errors as warnings.
# The GitHub editor is 127 chars wide
run: |
flake8 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics ./kyu_7
flake8 --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics ./kyu_7
# yamllint enable rule:line-length
2 changes: 1 addition & 1 deletion .yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ yaml-files:
- '.yamllint'

ignore: |
depricated/
deprecated/
rules:
anchors: enable
Expand Down
2 changes: 1 addition & 1 deletion allure-report/app.js

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions allure-report/data/attachments/109442e0bd8a1bf7.txt

This file was deleted.

18 changes: 0 additions & 18 deletions allure-report/data/attachments/109a63364b1709cb.txt

This file was deleted.

160 changes: 0 additions & 160 deletions allure-report/data/attachments/10a01d4023ecf988.txt

This file was deleted.

5 changes: 0 additions & 5 deletions allure-report/data/attachments/10ab1851bf24b8d6.txt

This file was deleted.

18 changes: 0 additions & 18 deletions allure-report/data/attachments/11f397a799a36e46.txt

This file was deleted.

78 changes: 0 additions & 78 deletions allure-report/data/attachments/125be537d5adaaca.txt

This file was deleted.

10 changes: 0 additions & 10 deletions allure-report/data/attachments/12f8c2c15d255220.txt

This file was deleted.

5 changes: 0 additions & 5 deletions allure-report/data/attachments/1317b7c3ac9b35f3.txt

This file was deleted.

Loading

0 comments on commit 6c66363

Please sign in to comment.