Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST: Fix largescale pytest mark issue #1553

Merged
merged 8 commits into from
Apr 15, 2020

Commits on Apr 13, 2020

  1. TST: Fix largescale pytest mark issue

    We change the command-line option to a version recommended in
    the pytest docs:
    https://docs.pytest.org/en/latest/example/markers.html#custom-marker-and-command-line-option-to-control-test-runs
    
    - A global `suite(name)` mark is registered, that takes a
      name and marks a test as belonging to a specific suite.
    - These special suites are opt-in, i.e., not run by default.
    - To enable a suite, one adds `-S name` to the pytest
      command-line options.
    - Since function-scoped fixtures are handled stricter now,
      the workaround in tensors_test.py didn't work any longer
      (see pytest-dev/pytest#6497).
    - We thus set the minimum pytest version to 5.4.0, where the
      fix for the issue is implemented.
    
    Closes: odlgroup#1514
    kohr-h committed Apr 13, 2020
    Configuration menu
    Copy the full SHA
    0630955 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e16dae View commit details
    Browse the repository at this point in the history
  3. Fix pytest dependency for Py2

    kohr-h committed Apr 13, 2020
    Configuration menu
    Copy the full SHA
    ae2b516 View commit details
    Browse the repository at this point in the history
  4. Add py 3.8 to classifiers

    kohr-h committed Apr 13, 2020
    Configuration menu
    Copy the full SHA
    9968caf View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2020

  1. slow->largescale

    kohr-h committed Apr 14, 2020
    Configuration menu
    Copy the full SHA
    d8fe980 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    707bc21 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b335eca View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8fec014 View commit details
    Browse the repository at this point in the history