https://github.com/tensorflow/magenta
Raw File
Tip revision: e6d3b27469742a21a96fe0665af9d5ee254c6508 authored by Curtis Hawthorne on 16 September 2019, 18:10:50 UTC
require TF 1.14 because it's needed by the tf probability package.
Tip revision: e6d3b27
conftest.py
# Copyright 2019 The Magenta Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Test configuration for pytest."""

import sys

collect_ignore = []
if sys.version_info.major != 2:
  collect_ignore.append('magenta/models/score2perf/datagen_beam_test.py')
back to top