1. 23 Sep, 2020 3 commits
    • Wissam Antoun's avatar
      Fixed evaluation_strategy on epoch end bug (#7340) · 58405a52
      Wissam Antoun authored
      * Fixed evaluation_strategy on epoch end bug
      
      move the evaluation script outside the the iteration loop
      
      * black formatting
      58405a52
    • Stas Bekman's avatar
      [testing] skip decorators: docs, tests, bugs (#7334) · 28cf8730
      Stas Bekman authored
      * skip decorators: docs, tests, bugs
      
      * another important note
      
      * style
      
      * bloody style
      
      * add @pytest.mark.parametrize
      
      * add note
      
      * no idea what it wants :(
      28cf8730
    • Stas Bekman's avatar
      [code quality] fix confused flake8 (#7309) · df536438
      Stas Bekman authored
      * fix confused flake
      
      We run `black  --target-version py35 ...` but flake8 doesn't know that, so currently with py38 flake8 fails suggesting that black should have reformatted 63 files. Indeed if I run:
      
      ```
      black --line-length 119 --target-version py38 examples templates tests src utils
      ```
      it indeed reformats 63 files.
      
      The only solution I found is to create a black config file as explained at https://github.com/psf/black#configuration-format, which is what this PR adds.
      
      Now flake8 knows that py35 is the standard and no longer gets confused regardless of the user's python version.
      
      * adjust the other files that will now rely on black's config file
      df536438
  2. 22 Sep, 2020 24 commits
  3. 21 Sep, 2020 13 commits