Skip to content

Commit

Permalink
Merge pull request #20 from nosovmik/test_pyngraph
Browse files Browse the repository at this point in the history
Test for python bindings
  • Loading branch information
nosovmik authored Apr 21, 2021
2 parents 46bc94c + 43507a3 commit c671098
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ngraph/python/tests/test_ngraph/test_frontendmanager.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

from ngraph import FrontEndManager

def test_frontendmanager():
fem = None
try:
fem = FrontEndManager()
except Exception:
assert False

frontEnds = fem.availableFrontEnds()
assert frontEnds is not None

0 comments on commit c671098

Please sign in to comment.