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

rename package name to openvswitch #7

Merged
merged 2 commits into from
Jun 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ before_install:
- go get -u github.com/golang/protobuf/{proto,protoc-gen-go}

script:
- sudo -E env PATH=$PATH TEST_OVS=1 gotestcover -coverprofile=coverage.txt -covermode=atomic ./ovs ./docker
- sudo -E env PATH=$PATH TEST_OVS=1 gotestcover -coverprofile=coverage.txt -covermode=atomic ./openvswitch ./docker
after_success:
- bash <(curl -s https://codecov.io/bash)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ clean:
-rm -f server/${BINARY}-*

test:
sudo -E env PATH=$$PATH TEST_OVS=1 go test -v ./ovs ./docker
sudo -E env PATH=$$PATH TEST_OVS=1 go test -v ./openvswitch ./docker

.PHONY: server client test clean
2 changes: 1 addition & 1 deletion ovs/ovs.go → openvswitch/ovs.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ovs
package openvswitch

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion ovs/ovs_test.go → openvswitch/ovs_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ovs
package openvswitch

import (
"os"
Expand Down