Skip to content
Permalink
master

Commits on Jan 2, 2021

  1. Merge pull request #365 from cclauss/blacken

    pyupgrade --py36-plus **/*.py
    faif committed Jan 2, 2021
  2. pyupgrade --py36-plus **/*.py

    cclauss committed Jan 2, 2021
  3. pyupgrade --py36-plus **/*.py

    cclauss committed Jan 2, 2021
  4. Merge pull request #364 from cclauss/patch-3

    Make codespell and isort mandatory tests
    faif committed Jan 2, 2021
  5. Make pytest . a mandatory test

    cclauss committed Jan 2, 2021
  6. Make codespell and isort mandatory tests

    Make codespell and isort mandatory tests.
    
    Drop bandit whose test results are not enlightening.
    cclauss committed Jan 2, 2021

Commits on Jan 1, 2021

  1. Merge pull request #363 from cclauss/patch-3

    GitHub Action to lint Python code
    faif committed Jan 1, 2021
  2. Merge pull request #362 from cclauss/patch-2

    Travis CI: Test on Python 3.9
    faif committed Jan 1, 2021
  3. Merge pull request #361 from cclauss/patch-1

    Fix typo discovered by codespell
    faif committed Jan 1, 2021

Commits on Dec 31, 2020

  1. flake8 . --exclude=./.*

    cclauss committed Dec 31, 2020
  2. Update lint_python.yml

    cclauss committed Dec 31, 2020
  3. skip_missing_interpreters

    cclauss committed Dec 31, 2020
  4. tox.ini: py38,py39

    cclauss committed Dec 31, 2020
  5. tox.ini: py39

    cclauss committed Dec 31, 2020
  6. Travis CI: Test on Python 3.9

    cclauss committed Dec 31, 2020
  7. Fix typo discovered by codespell

    ___codespell --quiet-level=2___
    ```
    ./python-patterns/patterns/behavioral/publish_subscribe.py:68: subscirbed ==> subscribed
    ./python-patterns/patterns/structural/front_controller.py:30: cant ==> can't
    ./python-patterns/patterns/structural/front_controller.py:72: cant ==> can't
    ```
    cclauss committed Dec 31, 2020

Commits on Sep 26, 2020

  1. Merge pull request #352 from techntools/correct-graph-search

    Added base case and return the path as soon as end node is visited
    faif committed Sep 26, 2020
  2. Added base case and return the path as soon as end node is visited

    Santosh Bandichode Santosh Bandichode
    Santosh Bandichode authored and Santosh Bandichode committed Sep 26, 2020

Commits on Sep 24, 2020

  1. Merge pull request #351 from techntools/correct-graph-search

    Used correct function names in recursive calls and fixed the doctest
    faif committed Sep 24, 2020

Commits on Sep 23, 2020

  1. Used correct function names in recursive calls and fixed the doctest

    Santosh Bandichode Santosh Bandichode
    Santosh Bandichode authored and Santosh Bandichode committed Sep 23, 2020

Commits on Aug 17, 2020

  1. Merge pull request #350 from LCVcode/master

    Implemented breadth first search for shortest graph path in graph_search.py
    faif committed Aug 17, 2020

Commits on Aug 12, 2020

  1. Merge pull request #349 from imankulov/fix_tox

    Update tox.ini to use py37,py38 instead of ci37,ci38
    faif committed Aug 12, 2020
  2. Update tox.ini to use py37,py38 instead of ci37,ci38

    As defined in the tox documentation
    (https://tox.readthedocs.io/en/latest/config.html#tox-environments),
    environment with names "pyNM" have special meaning and implicitly define
    the Python interpreter.
    
    Environment names ci37 and ci38 don't have any special meaning and run
    the default version of the interpreter. This results in that that both
    environments use the same interpreter locally.
    
    The PR changes the names of environments to make sure that tox creates a
    virtual environment with the correct interpreter version.
    imankulov committed Aug 12, 2020
  3. Merge pull request #348 from imankulov/fix_tests

    Fix tests
    faif committed Aug 12, 2020
  4. Remove unnecessary f-string modifier

    Make the flake8's "F541 f-string is missing placeholders" happy
    imankulov committed Aug 12, 2020
  5. Remove unused imports

    Make the flake8's test "F401 imported but unused" happy.
    imankulov committed Aug 12, 2020
  6. Ignore Flake8 rule W503

    As defined in https://www.flake8rules.com/rules/W503.html, this rule
    goes against the PEP8 recommendation and conflicts with W504.
    
    In the code, the rule results in a false-positive in
    patterns/behavioral/specification.py.
    imankulov committed Aug 12, 2020
  7. Fix borg tests

    Add a tearDown method that sets the shared state to "Init"
    imankulov committed Aug 12, 2020
  8. Rewrite tests for the Proxy class

    Remove outdated tests and replace them with ones that check the new
    behavior.
    imankulov committed Aug 12, 2020

Commits on Jul 23, 2020

  1. Merge pull request #345 from rednafi/master

    Added type hints to observer pattern
    faif committed Jul 23, 2020
Older
You can’t perform that action at this time.